Explorar el Código

remove unnecessary

Shun Miyazawa hace 3 años
padre
commit
e8eab35ddf
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  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> => {