🐛 Fix performance when navigating between budget/accounts (#3882)

* memo the bindingobj

* release notes

* fix

* a bit heavy handed

* lint
This commit is contained in:
Michael Clark
2024-11-24 08:43:01 +00:00
committed by GitHub
parent 339fac2806
commit c25e3d4163
2 changed files with 7 additions and 1 deletions

View File

@@ -66,7 +66,7 @@ export function useSheetValue<
}
},
);
}, [sheetName, bindingObj.name, bindingObj.query]);
}, [sheetName, bindingObj.name, JSON.stringify(bindingObj.query)]);
return result.value;
}

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MikesGlitch]
---
Fix performance regression around accounts and budget pages