diff --git a/src/components/cards/DailyLogCard.tsx b/src/components/cards/DailyLogCard.tsx
index b123b2c..7171281 100644
--- a/src/components/cards/DailyLogCard.tsx
+++ b/src/components/cards/DailyLogCard.tsx
@@ -111,8 +111,8 @@ export function DailyLogCard({ row, onPunchOut, isDetailView = false }: { row: R
) : (
<>
-
- {userName}
+
+ {userName}
>
)}
diff --git a/src/screens/ConsoleLayout.tsx b/src/screens/ConsoleLayout.tsx
index 490973b..6daa913 100644
--- a/src/screens/ConsoleLayout.tsx
+++ b/src/screens/ConsoleLayout.tsx
@@ -178,13 +178,17 @@ export function ConsoleLayout() {
{user && (
-
-
-
{user.name || 'User'}
-
{user.email || 'user@email.com'}
- {userRoles && userRoles.length > 0 && (
-
{userRoles.join(', ')}
- )}
+
+
+ {(user.name || 'U').charAt(0).toUpperCase()}
+
+
+ {user.name || 'User'}
+ {user.email || 'user@email.com'}
+ {userRoles && userRoles.length > 0 && (
+ {userRoles.join(', ')}
+ )}
+
)}