From 5f0d9c808ea8ebd0825f000f882b0f06f21063c9 Mon Sep 17 00:00:00 2001 From: Achintya-Chatterjee Date: Tue, 3 Dec 2024 00:17:36 +0530 Subject: [PATCH] fix: added the missing props --- src/interfaces/task.type.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interfaces/task.type.ts b/src/interfaces/task.type.ts index 8ff5d4be9..27f38e24d 100644 --- a/src/interfaces/task.type.ts +++ b/src/interfaces/task.type.ts @@ -113,6 +113,7 @@ export type CardProps = { export type ProgressContainerProps = { content: task; + isDev?: boolean; }; export default task;