fix: Server config showing in web view

This commit is contained in:
LukeGus
2025-11-02 01:52:29 -06:00
parent 7de387b987
commit 1fea3568b1

View File

@@ -596,6 +596,11 @@ export function Auth({
useEffect(() => {
const checkServerConfig = async () => {
if (isInElectronWebView()) {
setShowServerConfig(false);
return;
}
if (isElectron()) {
try {
const config = await getServerConfig();