Skip to content

Commit

Permalink
Merge branch 'dev' into feature/#126
Browse files Browse the repository at this point in the history
  • Loading branch information
cheonjiyun authored Sep 20, 2024
2 parents 388a196 + 48a2f6c commit 43b473b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routers/CheckAuth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function CheckAuth({ children }: propsType) {
useEffect(() => {
(async () => {
const isExist = await existGame();
if (isExist) {
if (isExist.valid) {
if (confirm('이미 참가중인 방이 있습니다. 재접속 하시겠습니까?')) {
navigate('/game');
}
Expand Down

0 comments on commit 43b473b

Please sign in to comment.