Skip to content

Commit

Permalink
merge: [FE] 로그인 리다이렉트 세미콜론 제거 (#248)
Browse files Browse the repository at this point in the history
merge: [FE] 로그인 리다이렉트 세미콜론 제거 (#248)
  • Loading branch information
HBSPS authored Dec 12, 2023
2 parents 7510eff + 1b315e9 commit fddd339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontEnd/src/components/room/modal/LoginModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function LoginButtonWrapper({ handleClick, className, type, children }: LoginBut
);

return (
<a href={`https://api.algoitni.site/auth/${type}?next=${nextPath};`} onClick={handleClick} className={className}>
<a href={`https://api.algoitni.site/auth/${type}?next=${nextPath}`} onClick={handleClick} className={className}>
{children}
</a>
);
Expand Down

0 comments on commit fddd339

Please sign in to comment.