diff --git a/apps/frontend/src/components/layout/layout.settings.tsx b/apps/frontend/src/components/layout/layout.settings.tsx
index f1eced4d..831b42b8 100644
--- a/apps/frontend/src/components/layout/layout.settings.tsx
+++ b/apps/frontend/src/components/layout/layout.settings.tsx
@@ -70,7 +70,7 @@ export const LayoutSettings = ({ children }: { children: ReactNode }) => {
- {(user.tier !== 'FREE' || !isGeneral()) && }
+ {(user.tier !== 'FREE' || !isGeneral() || process.env.isBillingEnabled === "false") && }
@@ -123,7 +123,7 @@ export const LayoutSettings = ({ children }: { children: ReactNode }) => {
)}
- {user?.orgId && (user.tier !== 'FREE' || !isGeneral()) ? (
+ {user?.orgId && (user.tier !== 'FREE' || !isGeneral() || process.env.isBillingEnabled === "false") ? (
) : (
@@ -137,7 +137,7 @@ export const LayoutSettings = ({ children }: { children: ReactNode }) => {
- {user.tier === 'FREE' && isGeneral() ? (
+ {(user.tier === 'FREE' && isGeneral()) && process.env.isBillingEnabled === "true" ? (
<>