Skip to content

Commit

Permalink
Glue-303-login-id-오류수정 (#90)
Browse files Browse the repository at this point in the history
* fix: loginId전역관리 오류 수정

* chore: loginId 디폴트값 변경
  • Loading branch information
yeyounging authored Jun 12, 2024
1 parent a9e3c92 commit 2dc10ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Common/UserContext/UserProviderWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function UserProviderWrapper({
}: {
children: React.ReactNode;
}) {
const [loginId, setLoginId] = useState<number>(0);
const [loginId, setLoginId] = useState<number>(1);

const contextValue = useMemo(
() => ({
Expand Down

0 comments on commit 2dc10ee

Please sign in to comment.