Skip to content
Snippets Groups Projects
Unverified Commit facc3acf authored by Jarek Samic's avatar Jarek Samic Committed by GitHub
Browse files

Fix mobile account view (#1486)

parent c2d5d475
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,7 @@ export default function Account(props) {
}, []);
// Load categories if necessary.
useCategories();
const categories = useCategories();
const updateSearchQuery = debounce(() => {
if (searchText === '' && currentQuery) {
......@@ -253,7 +253,7 @@ export default function Account(props) {
key={numberFormat + hideFraction}
account={account}
accounts={accounts}
categories={state.categories}
categories={categories.list}
payees={state.payees}
transactions={transactions}
prependTransactions={prependTransactions || []}
......
---
category: Bugfix
authors: [Cldfire]
---
Fix mobile account view
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