feature flags
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user