Skip to content

Commit

Permalink
lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshmi2506 committed Feb 2, 2024
1 parent 795abba commit 6903dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/tasks/detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ const TaskDetail = (
orgHasChanges =
(devOrg?.total_unsaved_changes || 0) -
(devOrg?.total_ignored_changes || 0) >
0 || devOrg?.has_non_source_changes;
0 || devOrg?.has_non_source_changes === true;
userIsDevOwner = Boolean(
userIsAssignedDev && devOrg?.is_created && devOrg?.owner === user.id,
);
Expand Down

0 comments on commit 6903dcd

Please sign in to comment.