fix(frontend): use correct diskstation ip for api calls [32788f42]

This commit is contained in:
2026-03-20 14:44:53 +00:00
parent ea8427aba5
commit 92ba156603

View File

@@ -16,7 +16,7 @@ function App() {
const [isLoading, setIsLoading] = useState(false);
const [error, setError] = useState<string | null>(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);