Skip to content

Commit 7f50c73

Browse files
authored
fix category group deletion on mobile (#4469)
* fix deleting category groups on mobile * note
1 parent a7cde1f commit 7f50c73

File tree

2 files changed

+7
-1
lines changed
  • packages/desktop-client/src/components/mobile/budget
  • upcoming-release-notes

2 files changed

+7
-1
lines changed

packages/desktop-client/src/components/mobile/budget/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export function Budget() {
159159
);
160160
} else {
161161
dispatch(collapseModals('category-group-menu'));
162-
dispatch(deleteGroup(groupId));
162+
dispatch(deleteGroup({ id: groupId }));
163163
}
164164
},
165165
[categoryGroups, dispatch],

upcoming-release-notes/4469.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
category: Bugfix
3+
authors: [matt-fidd]
4+
---
5+
6+
Fix category group deletion on mobile

0 commit comments

Comments
 (0)