frontend: TASK_IN_PROGRESS -> TASK_INPROGRESS

This commit is contained in:
0x1eef 2023-12-24 17:54:38 -03:00
parent c8cc348096
commit cf734f08dd

View file

@ -1,5 +1,5 @@
export const TASK_READY = "ready";
export const TASK_IN_PROGRESS = "in_progress";
export const TASK_INPROGRESS = "in_progress";
export const TASK_COMPLETE = "complete";
export type TASK_STATUS = "ready" | "in_progress" | "complete";