diff --git a/app/[lang]/(live)/(public)/hotelreservation/(confirmation)/layout.tsx b/app/[lang]/(live)/(public)/hotelreservation/(confirmation)/layout.tsx index 971c66e0d..5f59de245 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/(confirmation)/layout.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/(confirmation)/layout.tsx @@ -8,8 +8,5 @@ import styles from "./layout.module.css" export default function ConfirmedBookingLayout({ children, }: React.PropsWithChildren) { - if (env.HIDE_FOR_NEXT_RELEASE) { - return notFound() - } return
{children}
} diff --git a/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx b/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx index b9ad3b13c..f8fefdb5b 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx @@ -9,8 +9,5 @@ import { LangParams, LayoutArgs } from "@/types/params" export default function PaymentCallbackLayout({ children, }: React.PropsWithChildren>) { - if (env.HIDE_FOR_NEXT_RELEASE) { - return notFound() - } return
{children}
}