Sync defaultMessage from lokalise * Enhance translation sync functionality and tests - Added logging for found component files during sync. - Introduced tests for handling complex components with replacements. - Updated regex in syncIntlFormatMessage to support optional second arguments. - Removed unused test files. * feat(syncDefaultMessage): add script for syncing default message with lokalise * feat(syncDefaultMessage): add script for syncing default message with lokalise Approved-by: Matilda Landström
22 lines
610 B
TypeScript
22 lines
610 B
TypeScript
import { notFound } from "next/navigation"
|
|
import { Suspense } from "react"
|
|
|
|
import { MyStaySkeleton } from "@/components/HotelReservation/MyStay/myStaySkeleton"
|
|
import { Receipt } from "@/components/HotelReservation/MyStay/Receipt"
|
|
|
|
import type { LangParams, PageArgs } from "@/types/params"
|
|
|
|
export default async function ReceiptPage(
|
|
props: PageArgs<LangParams, { RefId?: string }>
|
|
) {
|
|
const searchParams = await props.searchParams
|
|
if (!searchParams.RefId) {
|
|
notFound()
|
|
}
|
|
return (
|
|
<Suspense fallback={<MyStaySkeleton />}>
|
|
<Receipt refId={searchParams.RefId} />
|
|
</Suspense>
|
|
)
|
|
}
|