feat: expand activeTab options in SharedUIState to include messages, media, and review

This commit is contained in:
MythEclipse
2026-05-16 21:42:28 +07:00
parent 62d131cf14
commit 9ad7d16a17
2 changed files with 13 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ export interface SharedUIState {
selectedVoiceChannel: string;
selectedTextGuild: string;
selectedTextChannel: string;
activeTab: "voice" | "text";
activeTab: "voice" | "messages" | "media" | "review";
isListening: boolean;
isStreaming: boolean;
}