From b3b037cb6e45161b68703a54198fd6041a3bab98 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Mon, 6 Jul 2026 18:08:39 +0530 Subject: [PATCH] fix: point API base at qa.getzino.in (dev renamed to qa) --- src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.tsx b/src/main.tsx index 662a631..2c1ea29 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -5,7 +5,7 @@ import { App } from './App'; import { ZinoProvider } from './api/provider'; import './styles/styles.css'; -const baseUrl = import.meta.env.VITE_ZINO_API_URL || 'https://dev.getzino.in'; +const baseUrl = import.meta.env.VITE_ZINO_API_URL || 'https://qa.getzino.in'; // Keep client routes under Vite's base (e.g. /lead-to-policy) so a refresh on // an in-app route hits the preview's per-slug SPA fallback. '/' in dev. const routerBase = import.meta.env.BASE_URL.replace(/\/$/, '');