fix(SW-449): Updated next.config date rule

This commit is contained in:
Pontus Dreij
2024-11-08 15:13:24 +01:00
parent 0294a80eab
commit 42e5da1ee0
4 changed files with 9 additions and 12 deletions

View File

@@ -974,11 +974,10 @@ export const hotelQueryRouter = router({
const { lang } = ctx
const apiLang = toApiLang(lang)
const params = {
Adults: input.adults,
EndDate: dt(input.toDate).format("YYYY-MM-DD"),
StartDate: dt(input.fromDate).format("YYYY-MM-DD"),
EndDate: dt(input.toDate).format("YYYY-MM-D"),
StartDate: dt(input.fromDate).format("YYYY-MM-D"),
language: apiLang,
}