diff --git a/client/ui/frontend/src/modules/profiles/ProfileDropdown.tsx b/client/ui/frontend/src/modules/profiles/ProfileDropdown.tsx
index ad1ed3274..e76e300c1 100644
--- a/client/ui/frontend/src/modules/profiles/ProfileDropdown.tsx
+++ b/client/ui/frontend/src/modules/profiles/ProfileDropdown.tsx
@@ -68,7 +68,10 @@ export const ProfileDropdown = ({ onManageProfiles }: ProfileDropdownProps) => {
if (!loaded) return ;
const hasProfile = !!activeProfileId;
- const displayName = hasProfile ? activeProfile : t("profile.selector.noProfile");
+ const activeFromList = profiles.find((p) => p.id === activeProfileId)?.name;
+ const displayName = hasProfile
+ ? (activeFromList ?? activeProfile)
+ : t("profile.selector.noProfile");
return (