diff --git a/frontend/components/dashboard/ScanTerminalDashboard.tsx b/frontend/components/dashboard/ScanTerminalDashboard.tsx
index 0eb13690..14734939 100644
--- a/frontend/components/dashboard/ScanTerminalDashboard.tsx
+++ b/frontend/components/dashboard/ScanTerminalDashboard.tsx
@@ -16,6 +16,7 @@ import type { ScanOpportunityRow } from "@/lib/dashboard-types";
import { AiPinnedForecastView } from "@/components/dashboard/scan-terminal/AiPinnedForecastView";
import { MobileCityPicker } from "@/components/dashboard/scan-terminal/MobileCityPicker";
import { WelcomeOverlay } from "@/components/dashboard/scan-terminal/WelcomeOverlay";
+import { ProFeaturePaywall } from "@/components/dashboard/ProFeaturePaywall";
import {
ScanPaywallModal,
ScanTerminalLoadingScreen,
@@ -331,12 +332,11 @@ function ScanTerminalScreen() {
void store.ensureCityDetail(cityName, false, "panel").catch(() => {});
setSelectedRowId(null);
}
- if (isPro) {
- addAiPinnedCity(cityName);
- setActiveView("analysis");
- }
+ void store.selectCity(cityName);
+ addAiPinnedCity(cityName);
+ setActiveView("analysis");
},
- [store, timeSortedRows, isPro, addAiPinnedCity],
+ [store, timeSortedRows, addAiPinnedCity],
);
useEffect(() => {
@@ -400,7 +400,7 @@ function ScanTerminalScreen() {