diff --git a/providers/NetworkStatusProvider.tsx b/providers/NetworkStatusProvider.tsx index d44caac6..b07a9076 100644 --- a/providers/NetworkStatusProvider.tsx +++ b/providers/NetworkStatusProvider.tsx @@ -24,7 +24,7 @@ const NetworkStatusContext = createContext( async function checkApiReachable(basePath?: string): Promise { if (!basePath) return false; try { - const response = await fetch(basePath, { method: "HEAD" }); + const response = await fetch(basePath + "/", { method: "HEAD" }); return response.ok; } catch { return false;