fix: remove feature flags

This commit is contained in:
Christel Westerberg
2024-11-28 09:18:46 +01:00
parent 5ef019b05a
commit 8a0ba71bc7
2 changed files with 0 additions and 6 deletions

View File

@@ -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 <div className={styles.layout}>{children}</div>
}

View File

@@ -9,8 +9,5 @@ import { LangParams, LayoutArgs } from "@/types/params"
export default function PaymentCallbackLayout({
children,
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
if (env.HIDE_FOR_NEXT_RELEASE) {
return notFound()
}
return <div className={styles.layout}>{children}</div>
}