From 552511bc8594d5a8efccc62603533ee56276a758 Mon Sep 17 00:00:00 2001 From: Ubinquitous Date: Wed, 4 Oct 2023 05:20:02 +0900 Subject: [PATCH] =?UTF-8?q?chore(user):=20=EC=9C=A0=EC=A0=80=20=EC=95=A1?= =?UTF-8?q?=EC=84=B8=EC=8A=A4=ED=86=A0=ED=81=B0=20=EC=9D=98=EC=A1=B4?= =?UTF-8?q?=EC=84=B1=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/useUser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useUser.ts b/src/hooks/useUser.ts index 2df16d3c..b4851258 100644 --- a/src/hooks/useUser.ts +++ b/src/hooks/useUser.ts @@ -30,7 +30,7 @@ const useUser = (options?: UseUserOptions) => { error, refetch, } = useQuery( - [KEY.USER, Storage.getItem(TOKEN.ACCESS)], + [KEY.USER], async () => { const { data } = await httpClient.user.get(authorization()); return data;