From 2051e87436c026f2bee00dff3b4d901667fa09ac Mon Sep 17 00:00:00 2001 From: Shyam Raghuwanshi <94217498+Shyam-Raghuwanshi@users.noreply.github.com> Date: Sat, 24 Feb 2024 04:31:43 +0530 Subject: [PATCH] fix: username overflow (#13832) --- packages/features/shell/Shell.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/features/shell/Shell.tsx b/packages/features/shell/Shell.tsx index e72ef544f2..c31f6a5554 100644 --- a/packages/features/shell/Shell.tsx +++ b/packages/features/shell/Shell.tsx @@ -462,8 +462,10 @@ function UserDropdown({ small }: UserDropdownProps) { {!small && ( - - {user.name || "Nameless User"} + + + {user.name || "Nameless User"} +