Skip to content
Snippets Groups Projects
Unverified Commit 63ad6dad authored by Julian Dominguez-Schatz's avatar Julian Dominguez-Schatz Committed by GitHub
Browse files

fix(mobile): show category for on-to-off-budget transfers (#3258)

* fix(mobile): show category for on-to-off-budget transfers

* Add release notes
parent 89b096aa
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ export const Transaction = memo(function Transaction({ ...@@ -111,7 +111,7 @@ export const Transaction = memo(function Transaction({
); );
const specialCategory = account?.offbudget const specialCategory = account?.offbudget
? 'Off Budget' ? 'Off Budget'
: transferAcct : transferAcct && !transferAcct.offbudget
? 'Transfer' ? 'Transfer'
: isParent : isParent
? 'Split' ? 'Split'
......
---
category: Bugfix
authors: [jfdoming]
---
Show category for on-to-off-budget transfers
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment