From c6f9ea44341471b9501244b5dbad57919ae0402b Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 4 Jun 2024 11:19:49 +0900 Subject: [PATCH] chore: update page.tsx (#4897) --- web/app/(shareLayout)/webapp-signin/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web/app/(shareLayout)/webapp-signin/page.tsx b/web/app/(shareLayout)/webapp-signin/page.tsx index bb25c70f3e55a..53068546380d2 100644 --- a/web/app/(shareLayout)/webapp-signin/page.tsx +++ b/web/app/(shareLayout)/webapp-signin/page.tsx @@ -21,12 +21,12 @@ const WebSSOForm: FC = () => { const { t } = useTranslation() const [isLoading, setIsLoading] = useState(false) - const [protocal, setProtocal] = useState('') + const [protocol, setProtocol] = useState('') useEffect(() => { const fetchFeaturesAndSetToken = async () => { await fetchSystemFeatures().then((res) => { - setProtocal(res.sso_enforced_for_web_protocol) + setProtocol(res.sso_enforced_for_web_protocol) }) // Callback from SSO, process token and redirect @@ -76,21 +76,21 @@ const WebSSOForm: FC = () => { return } - if (protocal === 'saml') { + if (protocol === 'saml') { fetchWebSAMLSSOUrl(appCode, redirectUrl).then((res) => { router.push(res.url) }).finally(() => { setIsLoading(false) }) } - else if (protocal === 'oidc') { + else if (protocol === 'oidc') { fetchWebOIDCSSOUrl(appCode, redirectUrl).then((res) => { router.push(res.url) }).finally(() => { setIsLoading(false) }) } - else if (protocal === 'oauth2') { + else if (protocol === 'oauth2') { fetchWebOAuth2SSOUrl(appCode, redirectUrl).then((res) => { router.push(res.url) }).finally(() => { @@ -100,7 +100,7 @@ const WebSSOForm: FC = () => { else { Toast.notify({ type: 'error', - message: 'sso protocal is not supported.', + message: 'sso protocol is not supported.', }) setIsLoading(false) }