diff --git a/src/server/static-react/src/constants/ui.ts b/src/server/static-react/src/constants/ui.ts index 7905f7d4..91d888c6 100644 --- a/src/server/static-react/src/constants/ui.ts +++ b/src/server/static-react/src/constants/ui.ts @@ -8,7 +8,6 @@ */ // Tab Configuration and Navigation -export const TAB_TRANSITION_DURATION_MS = 200; export const FORM_FIELD_DEBOUNCE_MS = 300; export interface TabDefinition { @@ -104,7 +103,7 @@ export const UI_STATES = { } as const; // Mutation Type Constants -export interface MutationTypeOption { +interface MutationTypeOption { value: string; label: string; } @@ -129,13 +128,6 @@ export const SCHEMA_BADGE_COLORS: Record = { pending: "badge badge-warning", }; -// Authentication Indicators -export const AUTH_INDICATORS = { - authenticated: "🔐", - unauthenticated: "🔓", - loading: "⏳", -} as const; - // Help Text Constants export const HELP_TEXT = { rangeSchema: "Range schemas support filtering by a range key",