fix tz issue when booking in non-utc time

This commit is contained in:
Thomas Ruoff
2022-03-18 00:10:33 +01:00
parent c6158f602f
commit 1fd922e362
2 changed files with 22 additions and 6 deletions

View File

@@ -16,10 +16,12 @@ export type Booking = {
zip: string
city: string
bill?: Bill
start: string
// format YYYY-MM-DD
start: string,
startDate: Date
endDate: Date
// format YYYY-MM-DD
end: string
endDate: Date
status?: BOOKING_STATUS
purpose?: string
org?: string