feat(ui): add "analytics" tab to activeTabs and defaultSharedUIState

This commit is contained in:
MythEclipse
2026-05-29 21:10:00 +07:00
parent 687fcec62c
commit 9ed50bc8ed
+3 -1
View File
@@ -5,7 +5,8 @@ export type ActiveTab =
| "messages"
| "media"
| "review"
| "recordings";
| "recordings"
| "analytics";
export interface SharedUIState {
selectedVoiceGuild: string;
@@ -27,6 +28,7 @@ const activeTabs: ActiveTab[] = [
"media",
"review",
"recordings",
"analytics",
];
export const defaultSharedUIState: SharedUIState = {