diff --git a/src/constants/index.ts b/src/constants/index.ts index bd628ec..8b1d982 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -151,15 +151,6 @@ export const TROUBLESHOOT_STATUS = { SOLVING: 'solving', } as const; -/** - * Server consultation session statuses - */ -export const SERVER_CONSULTATION_STATUS = { - GATHERING: 'gathering', - RECOMMENDING: 'recommending', - SELECTING: 'selecting', - COMPLETED: 'completed', -} as const; /** * Language codes for multi-language support @@ -217,7 +208,6 @@ export type DomainAction = typeof DOMAIN_ACTION[keyof typeof DOMAIN_ACTION]; export type DepositAction = typeof DEPOSIT_ACTION[keyof typeof DEPOSIT_ACTION]; export type NotificationType = typeof NOTIFICATION_TYPE[keyof typeof NOTIFICATION_TYPE]; export type TroubleshootStatus = typeof TROUBLESHOOT_STATUS[keyof typeof TROUBLESHOOT_STATUS]; -export type ServerConsultationStatus = typeof SERVER_CONSULTATION_STATUS[keyof typeof SERVER_CONSULTATION_STATUS]; export type LanguageCode = typeof LANGUAGE_CODE[keyof typeof LANGUAGE_CODE]; /**