Merge branch 'master' into feature/tracking

This commit is contained in:
Linus Flood
2024-12-03 07:48:59 +01:00
159 changed files with 2609 additions and 1227 deletions
+1
View File
@@ -18,6 +18,7 @@ export async function request<T>(
try {
client.setHeaders({
access_token: env.CMS_ACCESS_TOKEN,
branch: env.CMS_BRANCH,
"Content-Type": "application/json",
...params?.headers,
})
+1 -1
View File
@@ -144,7 +144,7 @@ export const getBookingConfirmation = cache(
export const getCityCoordinates = cache(
async function getMemoizedCityCoordinates(input: {
city: string
hotel: { address: string }
hotel: { address: string | undefined }
}) {
return serverClient().hotel.map.city(input)
}