Skip to content

Commit

Permalink
chore: 의존성 누락 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Xvezda committed May 13, 2024
1 parent 9ce8526 commit 8cd09c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function LoginButton() {
if (auth.data?.loggedIn) {
router.push(prevUrl || '/');
}
}, [auth.data]);
}, [router, prevUrl, auth.data]);

return <NaverLoginButton prevUrl={decodeURIComponent(prevUrl)} />;
}

0 comments on commit 8cd09c6

Please sign in to comment.