[PR #5592] [MERGED] [Redux] Move payee states from queriesSlice to payeesSlice #47837

Closed
opened 2026-04-26 09:48:51 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/5592
Author: @joel-jeremy
Created: 8/20/2025
Status: Merged
Merged: 8/21/2025
Merged by: @joel-jeremy

Base: masterHead: split-up-queriesSlice-payees


📝 Commits (10+)

  • b761e6a Update packages/desktop-client/src/queries/queriesSlice.ts
  • 4ffdf00 [autofix.ci] apply automated fixes
  • 26fdeb2 Move getAccountsById to accountsSlice
  • 80024f6 [autofix.ci] apply automated fixes
  • 7b2b7ac [Redux] Move payee states from queriesSlice to payeesSlice
  • 0937cf2 Fix merge error
  • 491118b Fix merge error
  • c748ded [autofix.ci] apply automated fixes
  • 8066df8 [autofix.ci] apply automated fixes (attempt 2/3)
  • b2ce29d Fix import

📊 Changes

18 files changed (+253 additions, -219 deletions)

View changed files

📝 packages/desktop-client/src/accounts/accountsSlice.ts (+2 -4)
📝 packages/desktop-client/src/components/ManageRules.tsx (+1 -1)
📝 packages/desktop-client/src/components/accounts/Account.tsx (+2 -5)
📝 packages/desktop-client/src/components/autocomplete/PayeeAutocomplete.tsx (+1 -1)
📝 packages/desktop-client/src/components/modals/ImportTransactionsModal/ImportTransactionsModal.jsx (+1 -1)
📝 packages/desktop-client/src/components/payees/ManagePayeesWithData.tsx (+1 -1)
📝 packages/desktop-client/src/components/rules/RuleEditor.tsx (+1 -1)
📝 packages/desktop-client/src/components/rules/ScheduleValue.tsx (+1 -1)
📝 packages/desktop-client/src/components/schedules/ScheduleDetails.tsx (+1 -1)
📝 packages/desktop-client/src/components/transactions/TransactionsTable.tsx (+2 -4)
📝 packages/desktop-client/src/global-events.ts (+2 -1)
📝 packages/desktop-client/src/hooks/usePayees.ts (+5 -8)
packages/desktop-client/src/payees/payeesSlice.ts (+214 -0)
📝 packages/desktop-client/src/queries/queriesSlice.ts (+1 -189)
📝 packages/desktop-client/src/redux/mock.tsx (+5 -0)
📝 packages/desktop-client/src/redux/store.ts (+5 -0)
📝 packages/desktop-client/src/sync-events.ts (+2 -1)
upcoming-release-notes/5592.md (+6 -0)

📄 Description

#5581 needs to be merged first


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/5592 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 8/20/2025 **Status:** ✅ Merged **Merged:** 8/21/2025 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `split-up-queriesSlice-payees` --- ### 📝 Commits (10+) - [`b761e6a`](https://github.com/actualbudget/actual/commit/b761e6a65ebde239ce42c3927c0779d1ec439624) Update packages/desktop-client/src/queries/queriesSlice.ts - [`4ffdf00`](https://github.com/actualbudget/actual/commit/4ffdf008c8341fbf9b25b9ecfc049ee3d75b0432) [autofix.ci] apply automated fixes - [`26fdeb2`](https://github.com/actualbudget/actual/commit/26fdeb22869a83052c890f2a0a0b672b79379bd3) Move getAccountsById to accountsSlice - [`80024f6`](https://github.com/actualbudget/actual/commit/80024f6616ce6971f16b74f1b18f3bb2d393a86b) [autofix.ci] apply automated fixes - [`7b2b7ac`](https://github.com/actualbudget/actual/commit/7b2b7ac14adc91e4ed2947f61dc0434a22fd67da) [Redux] Move payee states from queriesSlice to payeesSlice - [`0937cf2`](https://github.com/actualbudget/actual/commit/0937cf218a69882e1aad2e7e1fbfe878708bac6b) Fix merge error - [`491118b`](https://github.com/actualbudget/actual/commit/491118b4ad8178a91d6b24be1bbda866d88aae9e) Fix merge error - [`c748ded`](https://github.com/actualbudget/actual/commit/c748deda1d998c4ff0417543b6e4f92cf98f64b8) [autofix.ci] apply automated fixes - [`8066df8`](https://github.com/actualbudget/actual/commit/8066df80108353cecd466bf414bae8091d090ae8) [autofix.ci] apply automated fixes (attempt 2/3) - [`b2ce29d`](https://github.com/actualbudget/actual/commit/b2ce29d44e2413f3845ca01b6ea2df976d069024) Fix import ### 📊 Changes **18 files changed** (+253 additions, -219 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/accounts/accountsSlice.ts` (+2 -4) 📝 `packages/desktop-client/src/components/ManageRules.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/accounts/Account.tsx` (+2 -5) 📝 `packages/desktop-client/src/components/autocomplete/PayeeAutocomplete.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/modals/ImportTransactionsModal/ImportTransactionsModal.jsx` (+1 -1) 📝 `packages/desktop-client/src/components/payees/ManagePayeesWithData.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/rules/RuleEditor.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/rules/ScheduleValue.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/schedules/ScheduleDetails.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/transactions/TransactionsTable.tsx` (+2 -4) 📝 `packages/desktop-client/src/global-events.ts` (+2 -1) 📝 `packages/desktop-client/src/hooks/usePayees.ts` (+5 -8) ➕ `packages/desktop-client/src/payees/payeesSlice.ts` (+214 -0) 📝 `packages/desktop-client/src/queries/queriesSlice.ts` (+1 -189) 📝 `packages/desktop-client/src/redux/mock.tsx` (+5 -0) 📝 `packages/desktop-client/src/redux/store.ts` (+5 -0) 📝 `packages/desktop-client/src/sync-events.ts` (+2 -1) ➕ `upcoming-release-notes/5592.md` (+6 -0) </details> ### 📄 Description ~~#5581 needs to be merged first~~ <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes. Try running yarn generate:release-notes *before* pushing your PR for an interactive experience. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-26 09:48:51 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#47837