瀏覽代碼

clean code

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],