Skip to content

Commit 552511b

Browse files
committed
chore(user): 유저 액세스토큰 의존성 제거
1 parent 32ec762 commit 552511b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/useUser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const useUser = (options?: UseUserOptions) => {
3030
error,
3131
refetch,
3232
} = useQuery<IUser>(
33-
[KEY.USER, Storage.getItem(TOKEN.ACCESS)],
33+
[KEY.USER],
3434
async () => {
3535
const { data } = await httpClient.user.get(authorization());
3636
return data;

0 commit comments

Comments
 (0)