diff --git a/src/server/static-react/src/constants/api.ts b/src/server/static-react/src/constants/api.ts index e5bb1e67..29edfac7 100644 --- a/src/server/static-react/src/constants/api.ts +++ b/src/server/static-react/src/constants/api.ts @@ -147,7 +147,3 @@ export const CACHE_KEYS = { VERIFY: "verify", PARAMETERIZED_QUERY: "parameterized-query", } as const; - - -// Type definitions for better type safety -export type SchemaState = (typeof SCHEMA_STATES)[keyof typeof SCHEMA_STATES]; diff --git a/src/server/static-react/src/constants/schemas.ts b/src/server/static-react/src/constants/schemas.ts index c12d7112..34103e83 100644 --- a/src/server/static-react/src/constants/schemas.ts +++ b/src/server/static-react/src/constants/schemas.ts @@ -11,8 +11,6 @@ export const SCHEMA_STATES = { ERROR: 'error', } as const; -export type SchemaState = (typeof SCHEMA_STATES)[keyof typeof SCHEMA_STATES]; - // Range schema constants export const RANGE_SCHEMA_CONFIG = { FIELD_TYPE: 'Range',