fix: remove feature flags
This commit is contained in:
@@ -8,8 +8,5 @@ import styles from "./layout.module.css"
|
|||||||
export default function ConfirmedBookingLayout({
|
export default function ConfirmedBookingLayout({
|
||||||
children,
|
children,
|
||||||
}: React.PropsWithChildren) {
|
}: React.PropsWithChildren) {
|
||||||
if (env.HIDE_FOR_NEXT_RELEASE) {
|
|
||||||
return notFound()
|
|
||||||
}
|
|
||||||
return <div className={styles.layout}>{children}</div>
|
return <div className={styles.layout}>{children}</div>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,8 +9,5 @@ import { LangParams, LayoutArgs } from "@/types/params"
|
|||||||
export default function PaymentCallbackLayout({
|
export default function PaymentCallbackLayout({
|
||||||
children,
|
children,
|
||||||
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
|
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
|
||||||
if (env.HIDE_FOR_NEXT_RELEASE) {
|
|
||||||
return notFound()
|
|
||||||
}
|
|
||||||
return <div className={styles.layout}>{children}</div>
|
return <div className={styles.layout}>{children}</div>
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user