fix: update default userName from 'Roberto' to 'there' in store and AIChatPanel

This commit is contained in:
Roberto Musso
2026-02-28 23:53:25 +01:00
parent ee6467a7ac
commit af8cbc1c96
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ export function getStore(): Store<AppSettings> {
sidebarCollapsed: false, sidebarCollapsed: false,
aiProvider: 'copilot', aiProvider: 'copilot',
encryptedTokens: {}, encryptedTokens: {},
userName: 'Roberto', userName: 'there',
}, },
}); });
} }

View File

@@ -140,7 +140,7 @@ export function AIChatPanel({
// Derived values for home page // Derived values for home page
const dueCount = dueTodayQuery.data?.length ?? 0; const dueCount = dueTodayQuery.data?.length ?? 0;
const userName = userNameQuery.data ?? 'Roberto'; const userName = userNameQuery.data ?? 'there';
return ( return (
<div className="absolute inset-0 z-0 flex flex-col bg-background"> <div className="absolute inset-0 z-0 flex flex-col bg-background">