From 9ed50bc8ed434fea7332b7e90422394c8caeffcf Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Fri, 29 May 2026 21:10:00 +0700 Subject: [PATCH] feat(ui): add "analytics" tab to activeTabs and defaultSharedUIState --- src/state/uiState.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/state/uiState.ts b/src/state/uiState.ts index e3cd9c2..4b908cf 100644 --- a/src/state/uiState.ts +++ b/src/state/uiState.ts @@ -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 = {