diff --git a/apps/console/src/layouts/PublicTrustCenterLayout.tsx b/apps/console/src/layouts/PublicTrustCenterLayout.tsx index 42dd753ff..e5caed9aa 100644 --- a/apps/console/src/layouts/PublicTrustCenterLayout.tsx +++ b/apps/console/src/layouts/PublicTrustCenterLayout.tsx @@ -23,7 +23,7 @@ export function PublicTrustCenterLayout({ organizationName, organizationLogo, ch credentials: 'include', }); } catch (error) { - console.error('Logout failed:', error); + console.error('Logout failed'); } finally { window.location.href = "/"; } diff --git a/apps/console/src/pages/TrustCenterAccessPage.tsx b/apps/console/src/pages/TrustCenterAccessPage.tsx index 75d2aa8ad..81bd5c61a 100644 --- a/apps/console/src/pages/TrustCenterAccessPage.tsx +++ b/apps/console/src/pages/TrustCenterAccessPage.tsx @@ -95,7 +95,17 @@ export default function TrustCenterAccessPage() { credentials: 'include', body: JSON.stringify({ token }), }) - .then(response => response.json()) + .then(async response => { + if (!response.ok) { + try { + const errorData = await response.json(); + throw new Error(errorData.message || `HTTP ${response.status}: ${response.statusText}`); + } catch { + throw new Error(`HTTP ${response.status}: ${response.statusText}`); + } + } + return response.json(); + }) .then(data => { if (data.success) { navigate(`/trust/${slug}`); @@ -104,8 +114,8 @@ export default function TrustCenterAccessPage() { setLoading(false); } }) - .catch(() => { - setError(__("Authentication failed")); + .catch((error) => { + setError(error.message || __("Authentication failed")); setLoading(false); }); }, [slug, token, __, navigate]);