🎨 Adjust color and spacing (#684)

This commit is contained in:
Alejandra
2024-03-12 14:58:44 +01:00
committed by GitHub
parent cc0ea3c3b5
commit d360b92bc6
2 changed files with 9 additions and 5 deletions

View File

@@ -90,7 +90,11 @@ const UserInformation: React.FC = () => {
size="md"
/>
) : (
<Text size="md" py={2}>
<Text
size="md"
py={2}
color={!currentUser?.full_name ? 'gray.400' : 'inherit'}
>
{currentUser?.full_name || 'N/A'}
</Text>
)}