chore: typo

This commit is contained in:
Marc Seitz
2025-12-08 21:26:06 +01:00
parent cd9d9c41fc
commit eba9c3dd44

View File

@@ -36,7 +36,7 @@ export const getFeatureFlags = async ({ teamId }: { teamId?: string }) => {
ai: false,
};
// Return all features as true if edge config is not available
// Return all features as false if edge config is not available
if (!process.env.EDGE_CONFIG) {
return Object.fromEntries(
Object.entries(teamFeatures).map(([key, _v]) => [key, false]),