Skip to content

Commit

Permalink
feat: Unspecified Category should remain enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Shwetabhk committed Nov 17, 2023
1 parent ef16cd2 commit 548c16d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/mappings/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def create_fyle_categories_payload(
"id": category.source_id,
"name": category.value,
"code": destination_id_of_category,
"is_enabled": category.active,
"is_enabled": category.active if category.value != "Unspecified" else True,
}
)
else:
Expand Down

0 comments on commit 548c16d

Please sign in to comment.