Skip to content

Commit

Permalink
fix(be): do not use type import for constructors (#1447)
Browse files Browse the repository at this point in the history
* fix: use longer timeout value

* fix: invalid caddy timeout option

* fix: do not use type import for DI

* chore: fix lint warning
  • Loading branch information
dotoleeoak authored Feb 20, 2024
1 parent 9fdcc2f commit 16bd909
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/apps/admin/src/admin.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ApolloDriver, type ApolloDriverConfig } from '@nestjs/apollo'
import { CacheModule } from '@nestjs/cache-manager'
import { Module, type OnApplicationBootstrap } from '@nestjs/common'
import { ConfigModule } from '@nestjs/config'
import { APP_GUARD, type HttpAdapterHost } from '@nestjs/core'
import { APP_GUARD, HttpAdapterHost } from '@nestjs/core'
import { GraphQLModule } from '@nestjs/graphql'
import type { Server } from 'http'
import { LoggerModule } from 'nestjs-pino'
Expand Down
2 changes: 1 addition & 1 deletion backend/apps/client/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { MailerModule } from '@nestjs-modules/mailer'
import { CacheModule } from '@nestjs/cache-manager'
import { Module, type OnApplicationBootstrap } from '@nestjs/common'
import { ConfigModule } from '@nestjs/config'
import { APP_GUARD, type HttpAdapterHost } from '@nestjs/core'
import { APP_GUARD, HttpAdapterHost } from '@nestjs/core'
import type { Server } from 'http'
import { LoggerModule } from 'nestjs-pino'
import { JwtAuthModule, JwtAuthGuard } from '@libs/auth'
Expand Down
2 changes: 1 addition & 1 deletion frontend-client/components/DataTableLangFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
} from '@/components/ui/popover'
import { Separator } from '@/components/ui/separator'
import { PlusCircledIcon } from '@radix-ui/react-icons'
import { Column } from '@tanstack/react-table'
import type { Column } from '@tanstack/react-table'

interface DataTableLangFilterProps<TData, TValue> {
column?: Column<TData, TValue>
Expand Down

0 comments on commit 16bd909

Please sign in to comment.