Fix "?" crashing on budget selection page. (#3084)

* Fix ? crashing on load budget page.

* add release note
This commit is contained in:
Robert Dyer
2024-07-17 12:48:28 -05:00
committed by GitHub
parent 9b99debacc
commit 8434e8f5ce
2 changed files with 10 additions and 0 deletions

View File

@@ -29,6 +29,10 @@ export function Modals() {
};
switch (name) {
case 'keyboard-shortcuts':
// don't show the hotkey help modal when a budget is not open
return null;
case 'delete-budget':
return (
<DeleteFile

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [psybers]
---
Fix "?" crashing on budget selection page.