From 799e754b10626cd789b5c4002ec8892a3b52f770 Mon Sep 17 00:00:00 2001 From: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Date: Thu, 2 Apr 2026 16:57:04 +0800 Subject: [PATCH] tweaks --- web/app/(shareLayout)/webapp-signin/page.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/web/app/(shareLayout)/webapp-signin/page.tsx b/web/app/(shareLayout)/webapp-signin/page.tsx index c62cb063654..4b94a7210ff 100644 --- a/web/app/(shareLayout)/webapp-signin/page.tsx +++ b/web/app/(shareLayout)/webapp-signin/page.tsx @@ -45,13 +45,10 @@ const WebSSOForm: FC = () => { if (!systemFeatures.webapp_auth.enabled) { return (
-

{t('webapp.disabled', { ns: 'login' })}

+

{t('webapp.disabled', { ns: 'login' })}

) } - if (webAppAccessMode === null) - return
- if (webAppAccessMode && (webAppAccessMode === AccessMode.ORGANIZATION || webAppAccessMode === AccessMode.SPECIFIC_GROUPS_MEMBERS)) { return (
@@ -66,7 +63,7 @@ const WebSSOForm: FC = () => { return (
- {t('login.backToHome', { ns: 'share' })} + {t('login.backToHome', { ns: 'share' })}
) }