dsasd
All checks were successful
Deploy / deploy-staging (push) Successful in 5s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-09 01:34:41 +02:00
parent 693086029d
commit de99f21332
3 changed files with 106 additions and 42 deletions

View File

@@ -1224,7 +1224,7 @@ final class Router
private function bootstrapMeasurements(string $projectKey, array $settings, string $view): array
{
if (in_array($view, ['settings', 'dashboards', 'wallet'], true)) {
if (in_array($view, ['upload', 'dashboards', 'wallet'], true)) {
return [];
}
@@ -1313,7 +1313,7 @@ final class Router
private function normalizeBootstrapView(string $view): string
{
$normalized = trim(strtolower($view));
return in_array($normalized, ['overview', 'measurements', 'dashboards', 'mining', 'settings'], true)
return in_array($normalized, ['overview', 'upload', 'measurements', 'wallet', 'dashboards', 'mining'], true)
? $normalized
: 'overview';
}