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

alert 수정

parent 4178bed0
...@@ -49,10 +49,10 @@ const InvitePage = () => { ...@@ -49,10 +49,10 @@ const InvitePage = () => {
if (check === true) { if (check === true) {
joinroom(usercheck, roomId); joinroom(usercheck, roomId);
window.alert("방 참여가 완료되었습니다."); alert("방 참여가 완료되었습니다.");
window.location.href=`/user/${usercheck}` window.location.href=`/user/${usercheck}`
} else { } else {
window.alert("로그인이 필요합니다."); alert("로그인이 필요합니다.");
window.location.href = `/`; window.location.href = `/`;
} }
} }
...@@ -63,10 +63,10 @@ const InvitePage = () => { ...@@ -63,10 +63,10 @@ const InvitePage = () => {
else check = true; else check = true;
if (check === true) { if (check === true) {
window.alert("유저 페이지로 이동합니다."); alert("유저 페이지로 이동합니다.");
window.location.href = `/user/${usercheck}`; window.location.href = `/user/${usercheck}`;
} else { } else {
window.alert("로그인이 필요합니다."); alert("로그인이 필요합니다.");
window.location.href = `/`; 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