agent-ecosystem/src/renderer/components/team/provisioningSteps.ts
iliya ba083c317b fix: update provisioning step label for clarity
- Changed the label for the 'monitoring' step from 'Wait for files' to 'Provisioning' to better reflect the current process.
- Adjusted regex patterns in mention linkification functions to improve matching accuracy for mentions in markdown.
2026-03-13 14:56:52 +02:00

9 lines
347 B
TypeScript

export const STEP_ORDER = ['validating', 'spawning', 'monitoring', 'verifying', 'ready'] as const;
export type ProvisioningStep = (typeof STEP_ORDER)[number];
export const STEP_LABELS: Record<ProvisioningStep, string> = {
validating: 'Validate',
spawning: 'Start CLI',
monitoring: 'Provisioning',
verifying: 'Verify',
ready: 'Ready',
};