diff --git a/webclient/src/components/ui/WelcomeScreen.vue b/webclient/src/components/ui/WelcomeScreen.vue index 2500763..4308da6 100644 --- a/webclient/src/components/ui/WelcomeScreen.vue +++ b/webclient/src/components/ui/WelcomeScreen.vue @@ -59,7 +59,8 @@ } function profileIcon(p) { - return PROFILE_ICONS[p.id] ?? 'ph-robot' + const cls = PROFILE_ICONS[p.id] ?? 'ph-robot' + return `ph ${cls}` } async function handleStart() {