Merged in fix/isostring-error (pull request #3386)
fix: isostring * fix: isostring Approved-by: Joakim Jäderberg
This commit is contained in:
@@ -29,7 +29,7 @@ export const specialAlertsSchema = z
|
||||
text: alert.description || null,
|
||||
type: AlertTypeEnum.Info,
|
||||
displayInBookingFlow: alert.displayInBookingFlow,
|
||||
endDate: dt.utc(alert.endDate).toISOString(),
|
||||
startDate: dt.utc(alert.startDate).toISOString(),
|
||||
endDate: alert.endDate ? dt.utc(alert.endDate).toISOString() : null,
|
||||
startDate: alert.startDate ? dt.utc(alert.startDate).toISOString() : null,
|
||||
}))
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user