fix: update default userName from 'Roberto' to 'there' in store and AIChatPanel
This commit is contained in:
@@ -16,7 +16,7 @@ export function getStore(): Store<AppSettings> {
|
|||||||
sidebarCollapsed: false,
|
sidebarCollapsed: false,
|
||||||
aiProvider: 'copilot',
|
aiProvider: 'copilot',
|
||||||
encryptedTokens: {},
|
encryptedTokens: {},
|
||||||
userName: 'Roberto',
|
userName: 'there',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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">
|
||||||
|
|||||||
Reference in New Issue
Block a user