fix: user preview to lowercase (#1064)

changed the user preview in user-profile-skeleton to lowercase to match
ui of other components
This commit is contained in:
Sai Suhas Sawant
2024-03-27 18:07:11 +05:30
committed by GitHub
parent c644d527df
commit f386dd31a7

View File

@ -24,7 +24,7 @@ export const UserProfileSkeleton = ({ className, user, rows = 2 }: UserProfileSk
className,
)}
>
<div className="border-border bg-background text-muted-foreground inline-block max-w-full truncate rounded-md border px-2.5 py-1.5 text-sm">
<div className="border-border bg-background text-muted-foreground inline-block max-w-full truncate rounded-md border px-2.5 py-1.5 text-sm lowercase">
{baseUrl.host}/u/{user.url}
</div>