Skip to content

Commit

Permalink
fix bug with completed and removed events
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-codes committed Jul 16, 2023
1 parent 2354dcf commit a853eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/guest-pin-codes/src/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ const reducer = (
eventId: action.payload.eventId,
pin: action.payload.pin,
guestNetwork: action.payload.guestNetwork,
start: action.payload.start,
end: action.payload.end,
start: action.payload.start.toISOString(),
end: action.payload.end.toISOString(),
},
},
pins: state.pins.filter((pin) => pin !== action.payload.pin),
Expand Down

0 comments on commit a853eae

Please sign in to comment.