From 8a0ba71bc7e0e0acb55645247cbf0c62985d9f60 Mon Sep 17 00:00:00 2001 From: Christel Westerberg Date: Thu, 28 Nov 2024 09:18:46 +0100 Subject: [PATCH] fix: remove feature flags --- .../(live)/(public)/hotelreservation/(confirmation)/layout.tsx | 3 --- .../(payment-callback)/payment-callback/layout.tsx | 3 --- 2 files changed, 6 deletions(-) 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}
}