feat: ability to expand sidebar to see chats names (#7816)

Signed-off-by: Abhijay007 <Abhijay007j@gmail.com>
Signed-off-by: Abhijay Jain <Abhijay007j@gmail.com>
This commit is contained in:
Abhijay Jain
2026-03-20 19:25:33 +05:30
committed by GitHub
parent 5836f6fa4c
commit 387f1247c1
5 changed files with 114 additions and 9 deletions
+2
View File
@@ -44,6 +44,7 @@ export interface Settings {
showPricing: boolean;
sessionSharing: SessionSharingConfig;
seenAnnouncementIds: string[];
navExpandedWidth: number | null;
}
export type SettingKey = keyof Settings;
@@ -85,6 +86,7 @@ export const defaultSettings: Settings = {
baseUrl: '',
},
seenAnnouncementIds: [],
navExpandedWidth: null,
};
export function getKeyboardShortcuts(settings: Settings): KeyboardShortcuts {