From d1ae97e7bf1970a8803587019950443e98767275 Mon Sep 17 00:00:00 2001 From: bracesproul Date: Tue, 11 Mar 2025 10:30:43 -0700 Subject: [PATCH] fix --- src/providers/Stream.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/Stream.tsx b/src/providers/Stream.tsx index ce475a6..7a4f014 100644 --- a/src/providers/Stream.tsx +++ b/src/providers/Stream.tsx @@ -48,7 +48,7 @@ async function checkGraphStatus( apiKey: string | null, ): Promise { try { - const res = await fetch(`${apiUrl}/ok`, { + const res = await fetch(`${apiUrl}/info`, { ...(apiKey && { headers: { "X-Api-Key": apiKey,