Commit 51cf5545 authored by 우지원's avatar 우지원
Browse files

alert 수정

parent 4178bed0
......@@ -49,10 +49,10 @@ const InvitePage = () => {
if (check === true) {
joinroom(usercheck, roomId);
window.alert("방 참여가 완료되었습니다.");
alert("방 참여가 완료되었습니다.");
window.location.href=`/user/${usercheck}`
} else {
window.alert("로그인이 필요합니다.");
alert("로그인이 필요합니다.");
window.location.href = `/`;
}
}
......@@ -63,10 +63,10 @@ const InvitePage = () => {
else check = true;
if (check === true) {
window.alert("유저 페이지로 이동합니다.");
alert("유저 페이지로 이동합니다.");
window.location.href = `/user/${usercheck}`;
} else {
window.alert("로그인이 필요합니다.");
alert("로그인이 필요합니다.");
window.location.href = `/`;
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment