From cf734f08dd7fe64c3bf82db38e40f02c4daa4838 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sun, 24 Dec 2023 17:54:38 -0300 Subject: [PATCH] frontend: TASK_IN_PROGRESS -> TASK_INPROGRESS --- twenty-frontend/src/js/types/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twenty-frontend/src/js/types/schema.ts b/twenty-frontend/src/js/types/schema.ts index 7c2797c..c5968e0 100644 --- a/twenty-frontend/src/js/types/schema.ts +++ b/twenty-frontend/src/js/types/schema.ts @@ -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";