Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 8aa5773

Browse files
committed
fix: allow decline future recurring reservation
1 parent 5515830 commit 8aa5773

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/admin-ui/src/component/reservations/requested/RecurringReservationsView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function RecurringReservationsView({
104104
/>
105105
);
106106
}
107-
if (endDate <= now) {
107+
if (endDate > now) {
108108
buttons.push(
109109
<ReservationListButton
110110
key="deny"

0 commit comments

Comments
 (0)