Skip to content

Commit

Permalink
Fix white space
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham Sharma committed Sep 9, 2024
1 parent 068eb28 commit d8ddac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tasks/TaskDropDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function TaskDropDown({
const taskStatus = Object.entries(BACKEND_TASK_STATUS).filter(
([key]) =>
!(isDevMode && key === 'COMPLETED') &&
!(!isDevMode && (key === 'BACKLOG' || key === 'DONE'))
!(!isDevMode && (key === 'BACKLOG' || key === 'DONE'))
);

const isCurrentTaskStatusBlock = oldStatus === BACKEND_TASK_STATUS.BLOCKED;
Expand Down

0 comments on commit d8ddac8

Please sign in to comment.