From 92ba1566033e86421f79c3a01a173c918e5d55a6 Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 20 Mar 2026 14:44:53 +0000 Subject: [PATCH] fix(frontend): use correct diskstation ip for api calls [32788f42] --- fotograf-de-scraper/frontend/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fotograf-de-scraper/frontend/src/App.tsx b/fotograf-de-scraper/frontend/src/App.tsx index 8999d7a62..97d6e9b27 100644 --- a/fotograf-de-scraper/frontend/src/App.tsx +++ b/fotograf-de-scraper/frontend/src/App.tsx @@ -16,7 +16,7 @@ function App() { const [isLoading, setIsLoading] = useState(false); const [error, setError] = useState(null); - const API_BASE_URL = import.meta.env.VITE_API_BASE_URL || 'http://localhost:8002'; + const API_BASE_URL = import.meta.env.VITE_API_BASE_URL || 'http://192.168.178.6:8002'; const fetchJobs = async () => { setIsLoading(true);