Skip to content

Commit

Permalink
fix: 비회원 예약 시, 수정/삭제 버튼이 나타나지 않는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Puterism committed Jan 27, 2023
1 parent 6c93ed7 commit 277c86f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/GuestMap/units/ReservationDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const ReservationDrawer = ({
return false;
}

if (!reservation.isMyReservation) {
if (accessToken && !reservation.isMyReservation) {
return false;
}

Expand Down

0 comments on commit 277c86f

Please sign in to comment.