feat: complete relative api route integration and container build

This commit is contained in:
Antigravity AI Agent
2026-05-13 07:50:15 +02:00
parent 606da6de97
commit 9d10fed38e
9 changed files with 13 additions and 11 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export const Sidebar: React.FC<SidebarProps> = ({ activeTab, setActiveTab }) =>
const fetchGoogleStatus = async () => {
try {
const response = await fetch('http://localhost:3005/api/auth/google/status');
const response = await fetch('/api/auth/google/status');
const data = await response.json();
setConnectedAccounts(data);
} catch (error) {