From 4098dfc2b8336302f3ab710ee5d562bdeb1f6fab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trifun=20=C4=90or=C4=91evi=C4=87?= Date: Thu, 9 Apr 2026 03:55:15 +0200 Subject: [PATCH] Skip update prompt in in-game launcher --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 3c0f7368..9cb81789 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -114,8 +114,8 @@ const App = memo(() => { await Promise.all([ // Start these operations without waiting fetchServers(), - fetchUpdateInfo(), generateLanguageFilters(), + ...(IN_GAME ? [] : [fetchUpdateInfo()]), ]); } finally { endTimer();