Skip to content

Commit 458560b

Browse files
committed
Clean imports
Signed-off-by: SeeuSim <[email protected]>
1 parent 6bcc571 commit 458560b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/routes/questions/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import { Await, defer, useLoaderData, type LoaderFunctionArgs } from 'react-rout
44

55
import { WithNavBanner } from '@/components/blocks/authed/with-nav-banner';
66
import { Loading } from '@/components/blocks/loading';
7+
import { ScrollArea } from '@/components/ui/scroll-area';
78
import { useCrumbs } from '@/lib/hooks/use-crumbs';
89
import { fetchQuestions, ROWS_PER_PAGE } from '@/services/question-service';
910
import type { IGetQuestionsResponse } from '@/types/question-types';
1011

1112
import { QuestionTable } from './question-table';
1213
import { columns } from './table-columns';
13-
import { ScrollArea } from '@/components/ui/scroll-area';
1414

1515
const getListQuestionsQueryConfig = (pageNumber?: number) =>
1616
queryOptions({

frontend/src/routes/questions/question-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { useState } from 'react';
12
import {
23
ColumnDef,
34
ColumnFiltersState,
@@ -32,7 +33,6 @@ import {
3233
SelectTrigger,
3334
SelectValue,
3435
} from '@/components/ui/select';
35-
import { useState } from 'react';
3636

3737
interface QuestionTableProps<TData, TValue> {
3838
columns: ColumnDef<TData, TValue>[];

0 commit comments

Comments
 (0)