feature flags

This commit is contained in:
2026-01-07 22:05:53 +01:00
parent 1b63fa646c
commit 606b64cec7
530 changed files with 2092 additions and 2943 deletions

View File

@@ -53,7 +53,6 @@ interface ErrorStats {
};
environment: {
mode: string;
appMode: string;
version?: string;
buildTime?: string;
};
@@ -141,7 +140,6 @@ export function ErrorAnalyticsDashboard({
},
environment: {
mode: process.env.NODE_ENV || 'unknown',
appMode: process.env.NEXT_PUBLIC_GRIDPILOT_MODE || 'pre-launch',
version: process.env.NEXT_PUBLIC_APP_VERSION,
buildTime: process.env.NEXT_PUBLIC_BUILD_TIME,
},
@@ -432,10 +430,6 @@ export function ErrorAnalyticsDashboard({
stats.environment.mode === 'development' ? 'text-green-400' : 'text-yellow-400'
}`}>{stats.environment.mode}</span>
</div>
<div className="flex justify-between">
<span className="text-gray-500">App Mode</span>
<span className="text-blue-400 font-mono">{stats.environment.appMode}</span>
</div>
{stats.environment.version && (
<div className="flex justify-between">
<span className="text-gray-500">Version</span>