From 8df2be196912f603d1f4c323de607689e2507128 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Tue, 17 Feb 2026 19:46:27 +0100 Subject: [PATCH] Fix --- web/pages/profile.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/pages/profile.tsx b/web/pages/profile.tsx index b198ab5e..aa7586b0 100644 --- a/web/pages/profile.tsx +++ b/web/pages/profile.tsx @@ -11,6 +11,7 @@ import {api} from 'web/lib/api' import {PageBase} from "web/components/page-base"; import {SEO} from "web/components/SEO"; import {useT} from 'web/lib/locale' +import {CompassLoadingIndicator} from "web/components/widgets/loading-indicator"; export default function ProfilePage() { const user = useUser() @@ -22,7 +23,7 @@ export default function ProfilePage() { } }, [user]) - return user && profile && + return user && profile ? : } function ProfilePageInner(props: { user: User; profile: Profile }) {