Skip to content

Commit

Permalink
fix: 로그인 url 이동 시 새로고침 되도록 수정 (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
baegyeong authored Nov 21, 2024
2 parents 181eed9 + 377cedd commit b57d819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const Login = () => {

export const LoginButton = ({ to, src, alt }: LoginButtonProps) => {
return (
<Link to={to} className="w-72">
<Link to={to} className="w-72" reloadDocument>
<img src={src} alt={alt} />
</Link>
);
Expand Down

0 comments on commit b57d819

Please sign in to comment.