[PR #5072] [MERGED] [Mobile] Fix preview transactions not loading in multi-account views and uncategorized splits not loading #83421

Closed
opened 2026-05-19 08:14:10 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/5072
Author: @joel-jeremy
Created: 5/30/2025
Status: Merged
Merged: 8/13/2025
Merged by: @joel-jeremy

Base: masterHead: fix-previews-and-uncategorized-splits-not-loading


📝 Commits (10+)

📊 Changes

34 files changed (+1434 additions, -887 deletions)

View changed files

📝 packages/desktop-client/e2e/transactions.mobile.test.ts (+2 -2)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-accounts-uncategorized-page-1-chromium-linux.png (+0 -0)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-accounts-uncategorized-page-2-chromium-linux.png (+0 -0)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-accounts-uncategorized-page-3-chromium-linux.png (+0 -0)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-categories-uncategorized-page-1-chromium-linux.png (+0 -0)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-categories-uncategorized-page-2-chromium-linux.png (+0 -0)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-categories-uncategorized-page-3-chromium-linux.png (+0 -0)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-an-uncategorized-transaction-from-categories-uncategorized-page-1-chromium-linux.png (+0 -0)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-an-uncategorized-transaction-from-categories-uncategorized-page-2-chromium-linux.png (+0 -0)
packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-an-uncategorized-transaction-from-categories-uncategorized-page-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/FinancesApp.tsx (+1 -6)
📝 packages/desktop-client/src/components/Titlebar.tsx (+1 -1)
📝 packages/desktop-client/src/components/accounts/Account.tsx (+2 -2)
packages/desktop-client/src/components/mobile/accounts/Account.tsx (+0 -45)
packages/desktop-client/src/components/mobile/accounts/AccountPage.tsx (+224 -0)
📝 packages/desktop-client/src/components/mobile/accounts/AccountTransactions.tsx (+35 -256)
📝 packages/desktop-client/src/components/mobile/accounts/AccountsPage.tsx (+1 -1)
packages/desktop-client/src/components/mobile/accounts/AllAccountTransactions.tsx (+155 -0)
packages/desktop-client/src/components/mobile/accounts/OffBudgetAccountTransactions.tsx (+169 -0)
packages/desktop-client/src/components/mobile/accounts/OnBudgetAccountTransactions.tsx (+169 -0)

...and 14 more files

📄 Description

Renamed some files to make it clear that they are page components e.g. BudgetPage, CategoryPage and split the AccountTransactions component to be AllAccountTransactions, OnBudgetAccountTransactions, and OffBudgetAccountsTransactions. Uncategorized transactions are moved to the UncategorizedTransactions component.


🔄 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/5072 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 5/30/2025 **Status:** ✅ Merged **Merged:** 8/13/2025 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `fix-previews-and-uncategorized-splits-not-loading` --- ### 📝 Commits (10+) - [`a5df1b9`](https://github.com/actualbudget/actual/commit/a5df1b96adfed0369e05d2f5146bcd82f66706bc) Fix preview transactions not loading in multi-account views and uncategorized splits not loading - [`81a57cf`](https://github.com/actualbudget/actual/commit/81a57cf2d06b919a725ddcc25dbd5c082cd27d25) Update release notes - [`88c1e49`](https://github.com/actualbudget/actual/commit/88c1e494733566136b54f6b2b82b38b450439da9) Fix typecheck error - [`4d2e955`](https://github.com/actualbudget/actual/commit/4d2e955824ef04e118969b017951b24771204a35) Coderabbit feedback - [`9b66220`](https://github.com/actualbudget/actual/commit/9b66220c151c7fdd00af3475d64b3782d7e24764) Fix lint error - [`2754414`](https://github.com/actualbudget/actual/commit/2754414ef72efcc1571c60cf64b6dfb275fddb61) Fix banners - [`fba1f42`](https://github.com/actualbudget/actual/commit/fba1f42e9a79231a2af39a1b3bc9f74542079dba) Fix uncategorized view to use new route - [`0974a09`](https://github.com/actualbudget/actual/commit/0974a09fa292d4424e5c9c59c791067c82f1d0d7) Updates - [`42df601`](https://github.com/actualbudget/actual/commit/42df601fddf25171b840e3d66945dfa7609ad5d2) Update VRT - [`f3bd2f9`](https://github.com/actualbudget/actual/commit/f3bd2f920ceefbbdf67d5e91cf103435fb5a894f) Dummy commit ### 📊 Changes **34 files changed** (+1434 additions, -887 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/transactions.mobile.test.ts` (+2 -2) ➖ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-accounts-uncategorized-page-1-chromium-linux.png` (+0 -0) ➖ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-accounts-uncategorized-page-2-chromium-linux.png` (+0 -0) ➖ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-accounts-uncategorized-page-3-chromium-linux.png` (+0 -0) ➕ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-categories-uncategorized-page-1-chromium-linux.png` (+0 -0) ➕ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-categories-uncategorized-page-2-chromium-linux.png` (+0 -0) ➕ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-a-categorized-transaction-from-categories-uncategorized-page-3-chromium-linux.png` (+0 -0) ➕ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-an-uncategorized-transaction-from-categories-uncategorized-page-1-chromium-linux.png` (+0 -0) ➕ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-an-uncategorized-transaction-from-categories-uncategorized-page-2-chromium-linux.png` (+0 -0) ➕ `packages/desktop-client/e2e/transactions.mobile.test.ts-snapshots/Mobile-Transactions-creates-an-uncategorized-transaction-from-categories-uncategorized-page-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/FinancesApp.tsx` (+1 -6) 📝 `packages/desktop-client/src/components/Titlebar.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/accounts/Account.tsx` (+2 -2) ➖ `packages/desktop-client/src/components/mobile/accounts/Account.tsx` (+0 -45) ➕ `packages/desktop-client/src/components/mobile/accounts/AccountPage.tsx` (+224 -0) 📝 `packages/desktop-client/src/components/mobile/accounts/AccountTransactions.tsx` (+35 -256) 📝 `packages/desktop-client/src/components/mobile/accounts/AccountsPage.tsx` (+1 -1) ➕ `packages/desktop-client/src/components/mobile/accounts/AllAccountTransactions.tsx` (+155 -0) ➕ `packages/desktop-client/src/components/mobile/accounts/OffBudgetAccountTransactions.tsx` (+169 -0) ➕ `packages/desktop-client/src/components/mobile/accounts/OnBudgetAccountTransactions.tsx` (+169 -0) _...and 14 more files_ </details> ### 📄 Description <!-- 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. --> Renamed some files to make it clear that they are page components e.g. `BudgetPage`, `CategoryPage` and split the `AccountTransactions` component to be `AllAccountTransactions`, `OnBudgetAccountTransactions`, and `OffBudgetAccountsTransactions`. Uncategorized transactions are moved to the `UncategorizedTransactions` component. --- <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-05-19 08:14:11 -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#83421