Forráskód Böngészése

clean import lines

Yuki Takei 1 éve
szülő
commit
b2b807a597
1 módosított fájl, 4 hozzáadás és 2 törlés
  1. 4 2
      apps/app/src/stores/search.tsx

+ 4 - 2
apps/app/src/stores/search.tsx

@@ -1,7 +1,9 @@
-import useSWR, { mutate, SWRResponse } from 'swr';
+import type { SWRResponse } from 'swr';
+import useSWR, { mutate } from 'swr';
 
 
 import { apiGet } from '~/client/util/apiv1-client';
 import { apiGet } from '~/client/util/apiv1-client';
-import { IFormattedSearchResult, SORT_AXIS, SORT_ORDER } from '~/interfaces/search';
+import type { IFormattedSearchResult } from '~/interfaces/search';
+import { SORT_AXIS, SORT_ORDER } from '~/interfaces/search';
 
 
 
 
 export type ISearchConfigurations = {
 export type ISearchConfigurations = {