Shun Miyazawa 3 лет назад
Родитель
Сommit
e8eab35ddf
1 измененных файлов с 1 добавлено и 2 удалено
  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> => {