Skip to content

Commit c2f4577

Browse files
authored
Fix: Bypass auth (#114)
1 parent d8027ff commit c2f4577

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/place/reservation/create.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ const PlaceReservationCreatePage = ({ placeList }) => {
6363
PoPoAxios.get('/auth/verifyToken')
6464
.then((res) => setUserInfo(res.data))
6565
.catch(() => {
66-
// alert('로그인 후 예약 할 수 있습니다.');
67-
// router.push('/auth/login');
66+
alert('로그인 후 예약 할 수 있습니다.');
67+
router.push('/auth/login');
6868
});
6969
}, [router]);
7070

0 commit comments

Comments
 (0)