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) { ...@@ -150,7 +150,7 @@ export default function Account(props) {
}, []); }, []);
// Load categories if necessary. // Load categories if necessary.
useCategories(); const categories = useCategories();
const updateSearchQuery = debounce(() => { const updateSearchQuery = debounce(() => {
if (searchText === '' && currentQuery) { if (searchText === '' && currentQuery) {
...@@ -253,7 +253,7 @@ export default function Account(props) { ...@@ -253,7 +253,7 @@ export default function Account(props) {
key={numberFormat + hideFraction} key={numberFormat + hideFraction}
account={account} account={account}
accounts={accounts} accounts={accounts}
categories={state.categories} categories={categories.list}
payees={state.payees} payees={state.payees}
transactions={transactions} transactions={transactions}
prependTransactions={prependTransactions || []} 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