diff --git a/cannaiq/src/pages/WorkersDashboard.tsx b/cannaiq/src/pages/WorkersDashboard.tsx index 85bcf19b..a2e0841e 100644 --- a/cannaiq/src/pages/WorkersDashboard.tsx +++ b/cannaiq/src/pages/WorkersDashboard.tsx @@ -343,7 +343,8 @@ function PreflightSummary({ worker }: { worker: Worker }) { const httpError = worker.preflight_http_error; const httpMs = worker.preflight_http_ms; const geoState = worker.current_state; - const geoCity = worker.current_city; + // City from current_city column, or fallback to fingerprint detected location + const geoCity = worker.current_city || fingerprint?.detectedLocation?.city; // Build detailed tooltip const tooltipLines: string[] = [];