Skip to content

Commit

Permalink
Merge pull request #28 from harishdeivanayagam/feature/cloud-alpha-reqs
Browse files Browse the repository at this point in the history
fix ee pricing page
  • Loading branch information
harishdeivanayagam authored Jan 21, 2025
2 parents 6b49d58 + 4306d35 commit a252d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/ee/pricing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { PiCheck } from "react-icons/pi";

export default function PricingPage() {

if (!process.env.EE_ENABLED || process.env.EE_ENABLED !== "true") {
if (!process.env.EE_ENABLED || process.env.EE_ENABLED === "false") {
return (
<div className="flex flex-col gap-5 items-center justify-center h-screen">
<Image src="/logo.svg" alt="404" width={50} height={50} />
Expand Down

0 comments on commit a252d25

Please sign in to comment.