Feature disable password login #378

Merged
LukeGus merged 6 commits from feature-disable-password-login into dev-1.8.0 2025-10-08 00:59:44 +00:00
Showing only changes of commit 3925f6de91 - Show all commits
+1 -1
View File
@@ -161,7 +161,7 @@ export function AdminSettings({
} }
}) })
.catch((err) => { .catch((err) => {
if (!err.message?.includes("No server configured")) { if (err.code !== "NO_SERVER_CONFIGURED") {
toast.error(t("admin.failedToFetchPasswordLoginStatus")); toast.error(t("admin.failedToFetchPasswordLoginStatus"));
} }
}); });
1