From 7422ebdb28a049517de758bfca1a0f5af6daeda6 Mon Sep 17 00:00:00 2001 From: Matthew Olker Date: Fri, 7 Jun 2024 19:43:21 -0400 Subject: [PATCH] Walker asked me to commit to main --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 7b25c4990e1..6b5e64b7b0d 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -283,7 +283,7 @@ export const localServerUrl = import.meta.env.VITE_SERVER_URL ?? `http://${windo export const serverUrl = isLocal ? localServerUrl : ""; export const apiUrl = isLocal ? serverUrl : "https://api.pokerogue.net"; // used to disable api calls when isLocal is true and a server is not found -export let isLocalServerConnected = false; +export let isLocalServerConnected = true; export function setCookie(cName: string, cValue: string): void { const expiration = new Date();