fix(site): render username with content-primary, not white (#22172)

This commit is contained in:
Danielle Maywood
2026-02-18 12:48:58 +00:00
committed by GitHub
parent 4c0c621f2a
commit 873e054be0
@@ -50,7 +50,7 @@ export const UserDropdownContent: FC<UserDropdownContentProps> = ({
>
<Link to="/settings/account">
<div className="flex flex-col">
<span className="text-white">{user.username}</span>
<span className="text-content-primary">{user.username}</span>
<span className="text-xs font-semibold">{user.email}</span>
</div>
</Link>