Shun Miyazawa 4 лет назад
Родитель
Сommit
f1cf908f09
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/app/src/stores/tag.tsx

+ 2 - 2
packages/app/src/stores/tag.tsx

@@ -1,8 +1,8 @@
-import useSWR, { SWRResponse } from 'swr';
+import { SWRResponse } from 'swr';
 import useSWRImmutable from 'swr/immutable';
 
-import { ITagsListApiv1Result } from '~/interfaces/tag';
 import { apiGet } from '~/client/util/apiv1-client';
+import { ITagsListApiv1Result } from '~/interfaces/tag';
 
 export const useSWRxTagsList = (limit?: number, offset?: number): SWRResponse<ITagsListApiv1Result, Error> => {
   return useSWRImmutable(