We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bffc188 + 5396336 commit 38a9afdCopy full SHA for 38a9afd
src/app/ee/legal/[slug]/page.tsx
@@ -5,7 +5,7 @@ export default async function LegalPage({ params }: { params: Promise<{ slug: st
5
const { slug } = await params
6
let legalPageContent = ""
7
8
- const eeEnabled = process.env.NEXT_PUBLIC_EE_ENABLED === 'true'
+ const eeEnabled = process.env.EE_ENABLED && process.env.EE_ENABLED === 'true'
9
10
if (!eeEnabled) {
11
return (
src/app/ee/pricing/page.tsx
@@ -6,7 +6,7 @@ import { PiCheck } from "react-icons/pi";
export default async function PricingPage() {
12
0 commit comments