Răsfoiți Sursa

remove unnecessary

Shun Miyazawa 3 ani în urmă
părinte
comite
e8eab35ddf
1 a modificat fișierele cu 1 adăugiri și 2 ștergeri
  1. 1 2
      packages/app/src/stores/user.tsx

+ 1 - 2
packages/app/src/stores/user.tsx

@@ -1,8 +1,7 @@
 import useSWR, { SWRResponse } from 'swr';
-import { apiv3Get } from '~/client/util/apiv3-client';
 
+import { apiv3Get } from '~/client/util/apiv3-client';
 import { IUserHasId } from '~/interfaces/user';
-
 import { checkAndUpdateImageUrlCached } from '~/stores/middlewares/user';
 
 export const useSWRxUsersList = (userIds: string[]): SWRResponse<IUserHasId[], Error> => {