Skip to content

Commit

Permalink
🐛 Fix performance when navigating between budget/accounts (#3882)
Browse files Browse the repository at this point in the history
* memo the bindingobj

* release notes

* fix

* a bit heavy handed

* lint
  • Loading branch information
MikesGlitch authored Nov 24, 2024
1 parent 339fac2 commit c25e3d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function useSheetValue<
}
},
);
}, [sheetName, bindingObj.name, bindingObj.query]);
}, [sheetName, bindingObj.name, JSON.stringify(bindingObj.query)]);

return result.value;
}
6 changes: 6 additions & 0 deletions upcoming-release-notes/3882.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MikesGlitch]
---

Fix performance regression around accounts and budget pages

0 comments on commit c25e3d4

Please sign in to comment.