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

View File

@@ -161,7 +161,7 @@ export function AdminSettings({
}
})
.catch((err) => {
if (!err.message?.includes("No server configured")) {
if (err.code !== "NO_SERVER_CONFIGURED") {
toast.error(t("admin.failedToFetchPasswordLoginStatus"));
}
});