Browse Source

clean code

kaori 4 năm trước cách đây
mục cha
commit
63c1d693ba
1 tập tin đã thay đổi với 0 bổ sung2 xóa
  1. 0 2
      packages/app/src/stores/tag.tsx

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

@@ -1,11 +1,9 @@
 import { SWRResponse } from 'swr';
 import useSWRImmutable from 'swr/immutable';
 
-
 import { apiGet } from '~/client/util/apiv1-client';
 import { IResTagsListApiv1 } from '~/interfaces/tag';
 
-
 export const useSWRxTagsList = (limit?: number, offset?: number): SWRResponse<IResTagsListApiv1, Error> => {
   return useSWRImmutable(
     ['/tags.list', limit, offset],