kaori преди 4 години
родител
ревизия
63c1d693ba
променени са 1 файла, в които са добавени 0 реда и са изтрити 2 реда
  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],