From b9956decc7339806092dde0f82ef2d42fa30ae7a Mon Sep 17 00:00:00 2001 From: "Damon L. Montague Jr." Date: Fri, 26 Jan 2024 03:25:25 -0500 Subject: [PATCH] fixed i think if not idk --- ui/src/pages/Games.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/pages/Games.tsx b/ui/src/pages/Games.tsx index 0f6a0d2..a5a7f7b 100644 --- a/ui/src/pages/Games.tsx +++ b/ui/src/pages/Games.tsx @@ -23,7 +23,7 @@ export const Games = () => { const [liveUpdates, setLiveUpdates] = createSignal(false); const [predictions, setPredictions] = createSignal([]); const [predictionLoading, setPredictionLoading] = createSignal(false); - const BASE_URL = import.meta.env.VITE_BASE_URL as string; + const BASE_URL = import.meta.env.VITE_API_BASE_URL as string; let intervalId: NodeJS.Timeout;