Upgrade next@15.5.6 * chore: upgrade next@15.5.6 * chore: upgrade turborepo@2.6.1 * fix typings for scandic-web * fix: set correct type for pages * cleanup * fix more route.ts typing issues * Merge branch 'master' of bitbucket.org:scandic-swap/web into chore/upgrade-next * explicitly import the types Approved-by: Linus Flood
25 lines
625 B
TypeScript
25 lines
625 B
TypeScript
import MyStay from "@/components/HotelReservation/MyStay"
|
|
import { setLang } from "@/i18n/serverContext"
|
|
|
|
import Tracking from "./tracking"
|
|
|
|
import type { Lang } from "@scandic-hotels/common/constants/language"
|
|
|
|
export default async function MyStayPage(
|
|
props: PageProps<"/[lang]/hotelreservation/my-stay">
|
|
) {
|
|
const searchParams = await props.searchParams
|
|
const params = await props.params
|
|
const lang = params.lang as Lang
|
|
setLang(lang)
|
|
|
|
const refId = typeof searchParams.RefId === "string" ? searchParams.RefId : ""
|
|
|
|
return (
|
|
<>
|
|
<MyStay refId={refId} lang={lang} />
|
|
<Tracking />
|
|
</>
|
|
)
|
|
}
|