Merged in fix/LOY-409-remove-promo-flag (pull request #2955)

fix(LOY-409): Remove promo campaign flag

* fix(LOY-409): Remove promo campaign flag


Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Matilda Landström
2025-10-13 07:57:03 +00:00
parent 29f51e655e
commit 7bd75f01e4
3 changed files with 0 additions and 13 deletions

View File

@@ -1,8 +1,5 @@
import { notFound } from "next/navigation"
import { Suspense } from "react"
import { env } from "@/env/server"
import PromoCampaignPage from "@/components/ContentType/PromoCampaignPage"
import PromoCampaignPageSkeleton from "@/components/ContentType/PromoCampaignPage/PromoCampaignPageSkeleton"
@@ -11,9 +8,6 @@ import styles from "./page.module.css"
export { generateMetadata } from "@/utils/metadata/generateMetadata"
export default async function PromoCampaignPagePage() {
if (!env.PROMO_CAMPAIGN_PAGES_ENABLED) {
return notFound()
}
return (
<div className={styles.page}>
<Suspense fallback={<PromoCampaignPageSkeleton />}>