Automate issuer overlay creation from ticker searches

This commit is contained in:
2026-03-19 20:44:58 -04:00
parent 17de3dd72d
commit 391d6d34ce
79 changed files with 4746 additions and 695 deletions

View File

@@ -5,7 +5,7 @@ import type {
TaskType
} from '@/lib/types';
export type StageTimelineItem = {
type StageTimelineItem = {
stage: TaskStage;
label: string;
state: 'completed' | 'active' | 'pending' | 'failed';
@@ -115,7 +115,7 @@ export function stageLabel(stage: TaskStage) {
return STAGE_LABELS[stage] ?? stage;
}
export function taskStageOrder(taskType: TaskType) {
function taskStageOrder(taskType: TaskType) {
return TASK_STAGE_ORDER[taskType] ?? ['queued', 'running', 'completed'];
}