From 8b1b6d30872988d11daf957d55e8da60806f3588 Mon Sep 17 00:00:00 2001 From: Anton Tranelis Date: Mon, 6 May 2024 09:57:15 +0200 Subject: [PATCH] show profile name instead of user name in navbar --- src/Components/AppShell/NavBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/AppShell/NavBar.tsx b/src/Components/AppShell/NavBar.tsx index 5237422b..df0c1e10 100644 --- a/src/Components/AppShell/NavBar.tsx +++ b/src/Components/AppShell/NavBar.tsx @@ -79,7 +79,7 @@ export default function NavBar({ appName}: { appName: string }) { : <>} -
{user?.first_name}
+
{userProfile.name||user?.first_name}