From 68aaf6a6008ffb1aa1f46891574a33ad1e68d38f Mon Sep 17 00:00:00 2001 From: Mayank Bansal Date: Sun, 11 Jan 2026 00:42:50 +0530 Subject: [PATCH 1/3] chore: remove dev flag from tasks dropdown --- src/components/tasks/card/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tasks/card/index.tsx b/src/components/tasks/card/index.tsx index e863222a3..2a42e4ab0 100644 --- a/src/components/tasks/card/index.tsx +++ b/src/components/tasks/card/index.tsx @@ -627,7 +627,7 @@ const Card: FC = ({ {showAssignButton() && } - {(isEditable || (isDevMode && isSelfTask)) && ( + {(isEditable || isSelfTask) && (
Date: Sun, 11 Jan 2026 01:21:41 +0530 Subject: [PATCH 2/3] fix: status duplication for self assigned task --- src/components/tasks/card/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tasks/card/index.tsx b/src/components/tasks/card/index.tsx index 2a42e4ab0..91043c101 100644 --- a/src/components/tasks/card/index.tsx +++ b/src/components/tasks/card/index.tsx @@ -575,7 +575,7 @@ const Card: FC = ({ : `Started ${getStartedAgo()}`}
- {!isDevMode && ( + {!isDevMode && !isSelfTask && (

Status:

Date: Tue, 13 Jan 2026 23:53:11 +0530 Subject: [PATCH 3/3] fix: show status for dev mode --- src/components/tasks/card/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tasks/card/index.tsx b/src/components/tasks/card/index.tsx index 91043c101..8257ef130 100644 --- a/src/components/tasks/card/index.tsx +++ b/src/components/tasks/card/index.tsx @@ -575,7 +575,7 @@ const Card: FC = ({ : `Started ${getStartedAgo()}`}

- {!isDevMode && !isSelfTask && ( + {!isSelfTask && (

Status: