Skip to content
This repository was archived by the owner on May 13, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions src/server/static-react/src/constants/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -104,7 +103,7 @@ export const UI_STATES = {
} as const;

// Mutation Type Constants
export interface MutationTypeOption {
interface MutationTypeOption {
value: string;
label: string;
}
Expand All @@ -129,13 +128,6 @@ export const SCHEMA_BADGE_COLORS: Record<string, string> = {
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",
Expand Down
Loading