[PR #8094] [CLOSED] [AI] Add scoped ErrorBoundaries to report and mobile pages #122323

Closed
opened 2026-06-11 21:08:06 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/8094
Author: @okxint
Created: 6/5/2026
Status: Closed

Base: masterHead: fix/feature-error-boundaries


📝 Commits (5)

  • b3191ae Add release notes for PR #7177
  • 108da34 [AI] Fix append/prepend notes rule not working when note already exists
  • 78016e6 Add release notes for #7568
  • 6d66bb9 [AI] Add scoped ErrorBoundaries to report and mobile pages
  • 8547f1b [autofix.ci] apply automated fixes

📊 Changes

33 files changed (+879 additions, -651 deletions)

View changed files

📝 packages/desktop-client/src/components/mobile/accounts/AccountPage.tsx (+33 -29)
📝 packages/desktop-client/src/components/mobile/accounts/AccountsPage.tsx (+20 -16)
📝 packages/desktop-client/src/components/mobile/banksync/MobileBankSyncAccountEditPage.tsx (+76 -72)
📝 packages/desktop-client/src/components/mobile/banksync/MobileBankSyncPage.tsx (+52 -48)
📝 packages/desktop-client/src/components/mobile/budget/BudgetPage.tsx (+75 -68)
📝 packages/desktop-client/src/components/mobile/budget/CategoryPage.tsx (+34 -30)
📝 packages/desktop-client/src/components/mobile/budget/CategoryTransactions.tsx (+7 -3)
📝 packages/desktop-client/src/components/mobile/payees/MobilePayeeEditPage.tsx (+40 -36)
📝 packages/desktop-client/src/components/mobile/payees/MobilePayeesPage.tsx (+36 -32)
📝 packages/desktop-client/src/components/mobile/rules/MobileRuleEditPage.tsx (+24 -20)
📝 packages/desktop-client/src/components/mobile/rules/MobileRulesPage.tsx (+40 -33)
📝 packages/desktop-client/src/components/mobile/schedules/MobileScheduleEditPage.tsx (+51 -47)
📝 packages/desktop-client/src/components/mobile/schedules/MobileSchedulesPage.tsx (+48 -44)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionEdit.tsx (+16 -10)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionList.tsx (+117 -106)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionListWithBalances.tsx (+50 -46)
📝 packages/desktop-client/src/components/reports/reports/AgeOfMoney.tsx (+7 -1)
📝 packages/desktop-client/src/components/reports/reports/BalanceForecast.tsx (+7 -1)
📝 packages/desktop-client/src/components/reports/reports/BudgetAnalysis.tsx (+7 -1)
📝 packages/desktop-client/src/components/reports/reports/Calendar.tsx (+7 -1)

...and 13 more files

📄 Description

Closes #7391

Wraps all remaining uncovered feature areas with ErrorBoundary from react-error-boundary (already a dependency), using the shared FeatureErrorFallback component.

Reports (11 components):
NetWorth, CashFlow, Spending, Calendar, BalanceForecast, Sankey, Summary, AgeOfMoney, Crossover, Formula, BudgetAnalysis

Mobile (16 components):
BudgetPage, CategoryPage, CategoryTransactions, AccountsPage, AccountPage, TransactionList, TransactionListWithBalances, TransactionEdit, MobileSchedulesPage, MobileScheduleEditPage, MobileRulesPage, MobileRuleEditPage, MobilePayeesPage, MobilePayeeEditPage, MobileBankSyncPage, MobileBankSyncAccountEditPage

Each boundary wraps the outermost return of the feature's entry-point component, so a single rendering error is contained to that feature area instead of crashing the whole app.


Bundle Stats

Bundle Files count Total bundle size % Changed
desktop-client 37 14.06 MB → 14.07 MB (+9.36 kB) +0.06%
loot-core 1 5.28 MB → 5.28 MB (+230 B) +0.00%
api 2 3.86 MB → 3.86 MB (+226 B) +0.01%
cli 1 7.97 MB 0%
crdt 1 11.12 kB 0%
View detailed bundle stats

desktop-client

Total

Files count Total bundle size % Changed
37 14.06 MB → 14.07 MB (+9.36 kB) +0.06%
Changeset
File Δ Size
src/components/mobile/budget/CategoryPage.tsx 📈 +297 B (+11.96%) 2.43 kB → 2.72 kB
locale/nl.json 📈 +12.48 kB (+11.68%) 106.82 kB → 119.3 kB
src/components/mobile/payees/MobilePayeesPage.tsx 📈 +142 B (+4.57%) 3.03 kB → 3.17 kB
src/components/mobile/rules/MobileRuleEditPage.tsx 📈 +125 B (+3.40%) 3.59 kB → 3.72 kB
src/components/mobile/rules/MobileRulesPage.tsx 📈 +142 B (+3.30%) 4.2 kB → 4.34 kB
src/components/mobile/schedules/MobileScheduleEditPage.tsx 📈 +148 B (+2.52%) 5.74 kB → 5.89 kB
src/components/mobile/budget/CategoryTransactions.tsx 📈 +117 B (+2.39%) 4.78 kB → 4.89 kB
src/components/mobile/banksync/MobileBankSyncPage.tsx 📈 +115 B (+2.32%) 4.84 kB → 4.95 kB
src/components/mobile/payees/MobilePayeeEditPage.tsx 📈 +115 B (+1.82%) 6.17 kB → 6.28 kB
src/components/mobile/schedules/MobileSchedulesPage.tsx 📈 +115 B (+1.70%) 6.62 kB → 6.74 kB
src/components/mobile/accounts/AccountPage.tsx 📈 +115 B (+1.25%) 8.96 kB → 9.08 kB
src/components/mobile/banksync/MobileBankSyncAccountEditPage.tsx 📈 +115 B (+1.24%) 9.07 kB → 9.18 kB
src/components/reports/reports/CashFlow.tsx 📈 +111 B (+1.17%) 9.27 kB → 9.37 kB
src/components/mobile/transactions/TransactionListWithBalances.tsx 📈 +114 B (+1.10%) 10.1 kB → 10.21 kB
src/components/reports/reports/Formula.tsx 📈 +111 B (+1.08%) 9.99 kB → 10.1 kB
src/components/reports/reports/NetWorth.tsx 📈 +111 B (+0.77%) 14.16 kB → 14.27 kB
src/components/reports/reports/BalanceForecast.tsx 📈 +111 B (+0.73%) 14.85 kB → 14.96 kB
src/components/mobile/transactions/TransactionList.tsx 📈 +119 B (+0.64%) 18.04 kB → 18.15 kB
src/components/reports/reports/AgeOfMoney.tsx 📈 +111 B (+0.61%) 17.68 kB → 17.79 kB
src/components/mobile/accounts/AccountsPage.tsx 📈 +124 B (+0.60%) 20.23 kB → 20.35 kB
src/components/transactions/TransactionList.tsx 📈 +100 B (+0.56%) 17.29 kB → 17.38 kB
src/components/reports/reports/BudgetAnalysis.tsx 📈 +111 B (+0.54%) 19.92 kB → 20.03 kB
src/components/reports/reports/Spending.tsx 📈 +111 B (+0.44%) 24.58 kB → 24.69 kB
src/components/reports/reports/Summary.tsx 📈 +111 B (+0.42%) 25.57 kB → 25.68 kB
src/components/reports/reports/Calendar.tsx 📈 +114 B (+0.40%) 27.58 kB → 27.7 kB
src/components/mobile/transactions/TransactionEdit.tsx 📈 +255 B (+0.35%) 71.47 kB → 71.72 kB
src/components/reports/reports/Sankey.tsx 📈 +111 B (+0.34%) 31.75 kB → 31.86 kB
src/components/mobile/budget/BudgetPage.tsx 📈 +115 B (+0.31%) 36.12 kB → 36.23 kB
locale/en.json 📈 +590 B (+0.29%) 200.02 kB → 200.59 kB
src/components/reports/reports/Crossover.tsx 📈 +111 B (+0.26%) 41.16 kB → 41.27 kB
locale/de.json 📉 -569 B (-0.33%) 170.65 kB → 170.1 kB
locale/pt-BR.json 📉 -648 B (-0.34%) 187.97 kB → 187.34 kB
locale/ca.json 📉 -653 B (-0.34%) 186.26 kB → 185.63 kB
locale/zh-Hans.json 📉 -412 B (-0.34%) 116.84 kB → 116.44 kB
locale/es.json 📉 -646 B (-0.35%) 178.21 kB → 177.58 kB
locale/it.json 📉 -617 B (-0.37%) 164.53 kB → 163.93 kB
locale/uk.json 📉 -832 B (-0.39%) 208.65 kB → 207.84 kB
locale/fr.json 📉 -722 B (-0.40%) 178.06 kB → 177.35 kB
locale/nb-NO.json 📉 -663 B (-0.44%) 147.72 kB → 147.07 kB
locale/th.json 📉 -1006 B (-0.56%) 174.31 kB → 173.33 kB
locale/da.json 📉 -619 B (-0.60%) 100.8 kB → 100.19 kB
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger

Asset File Size % Changed
static/js/nl.js 106.82 kB → 119.3 kB (+12.48 kB) +11.68%
static/js/narrow.js 364.2 kB → 365.94 kB (+1.74 kB) +0.48%
static/js/ReportRouter.js 1.27 MB → 1.27 MB (+1.2 kB) +0.09%
static/js/en.js 200.02 kB → 200.59 kB (+590 B) +0.29%
static/js/TransactionEdit.js 90.63 kB → 90.88 kB (+255 B) +0.27%
static/js/TransactionList.js 85.81 kB → 85.93 kB (+119 B) +0.14%
static/js/ScheduleEditForm.js 146.44 kB → 146.56 kB (+115 B) +0.08%
static/js/Value.js 5.08 MB → 5.08 MB (+100 B) +0.00%

Smaller

Asset File Size % Changed
static/js/th.js 174.31 kB → 173.33 kB (-1006 B) -0.56%
static/js/uk.js 208.65 kB → 207.84 kB (-832 B) -0.39%
static/js/fr.js 178.06 kB → 177.35 kB (-722 B) -0.40%
static/js/nb-NO.js 147.72 kB → 147.07 kB (-663 B) -0.44%
static/js/ca.js 186.26 kB → 185.63 kB (-653 B) -0.34%
static/js/pt-BR.js 187.97 kB → 187.34 kB (-648 B) -0.34%
static/js/es.js 178.21 kB → 177.58 kB (-646 B) -0.35%
static/js/da.js 100.8 kB → 100.19 kB (-619 B) -0.60%
static/js/it.js 164.53 kB → 163.93 kB (-617 B) -0.37%
static/js/de.js 170.65 kB → 170.1 kB (-569 B) -0.33%
static/js/zh-Hans.js 116.84 kB → 116.44 kB (-412 B) -0.34%

Unchanged

Asset File Size % Changed
static/js/index.js 1.56 MB 0%
static/js/BackgroundImage.js 121.09 kB 0%
static/js/FormulaEditor.js 962.55 kB 0%
static/js/ManageRules.js 46.6 kB 0%
static/js/PayeeRuleCountLabel.js 7.33 kB 0%
static/js/SchedulesTable.js 202.7 kB 0%
static/js/_baseIsEqual.js 98.38 kB 0%
static/js/client.js 451.37 kB 0%
static/js/en-GB.js 9.25 kB 0%
static/js/extends.js 508.06 kB 0%
static/js/indexeddb-main-thread-worker-e59fee74.js 13.46 kB 0%
static/js/resize-observer.js 18.06 kB 0%
static/js/theme.js 31.88 kB 0%
static/js/toString.js 705.14 kB 0%
static/js/useFormatList.js 2.52 kB 0%
static/js/useTransactionBatchActions.js 9.71 kB 0%
static/js/wide.js 298.88 kB 0%
static/js/workbox-window.prod.es5.js 7.33 kB 0%

loot-core

Total

Files count Total bundle size % Changed
1 5.28 MB → 5.28 MB (+230 B) +0.00%
Changeset
File Δ Size
home/runner/work/actual/actual/packages/loot-core/src/server/rules/action.ts 📈 +230 B (+2.79%) 8.06 kB → 8.29 kB
View detailed bundle breakdown

Added

Asset File Size % Changed
kcab.worker.Db9PGarl.js 0 B → 5.28 MB (+5.28 MB) -

Removed

Asset File Size % Changed
kcab.worker.BkkH_8jr.js 5.28 MB → 0 B (-5.28 MB) -100%

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged
No assets were unchanged


api

Total

Files count Total bundle size % Changed
2 3.86 MB → 3.86 MB (+226 B) +0.01%
Changeset
File Δ Size
home/runner/work/actual/actual/packages/loot-core/src/server/rules/action.ts 📈 +226 B (+2.90%) 7.6 kB → 7.82 kB
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger

Asset File Size % Changed
index.js 3.86 MB → 3.86 MB (+226 B) +0.01%

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
models.js 0 B 0%

cli

Total

Files count Total bundle size % Changed
1 7.97 MB 0%
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
cli.js 7.97 MB 0%

crdt

Total

Files count Total bundle size % Changed
1 11.12 kB 0%
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
index.js 11.12 kB 0%

🔄 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/8094 **Author:** [@okxint](https://github.com/okxint) **Created:** 6/5/2026 **Status:** ❌ Closed **Base:** `master` ← **Head:** `fix/feature-error-boundaries` --- ### 📝 Commits (5) - [`b3191ae`](https://github.com/actualbudget/actual/commit/b3191ae2bc28c64860cd85edbc2fdb09b9260099) Add release notes for PR #7177 - [`108da34`](https://github.com/actualbudget/actual/commit/108da340645858a8ede29ccf12277c584fdb4f43) [AI] Fix append/prepend notes rule not working when note already exists - [`78016e6`](https://github.com/actualbudget/actual/commit/78016e6c54e430dc155c096da34343c3d0dd5710) Add release notes for #7568 - [`6d66bb9`](https://github.com/actualbudget/actual/commit/6d66bb9edc42bc77f9868c8a61dd4d6268564fe5) [AI] Add scoped ErrorBoundaries to report and mobile pages - [`8547f1b`](https://github.com/actualbudget/actual/commit/8547f1b681e4e11986d8b04871e9f5e8bc81b0c0) [autofix.ci] apply automated fixes ### 📊 Changes **33 files changed** (+879 additions, -651 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/mobile/accounts/AccountPage.tsx` (+33 -29) 📝 `packages/desktop-client/src/components/mobile/accounts/AccountsPage.tsx` (+20 -16) 📝 `packages/desktop-client/src/components/mobile/banksync/MobileBankSyncAccountEditPage.tsx` (+76 -72) 📝 `packages/desktop-client/src/components/mobile/banksync/MobileBankSyncPage.tsx` (+52 -48) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetPage.tsx` (+75 -68) 📝 `packages/desktop-client/src/components/mobile/budget/CategoryPage.tsx` (+34 -30) 📝 `packages/desktop-client/src/components/mobile/budget/CategoryTransactions.tsx` (+7 -3) 📝 `packages/desktop-client/src/components/mobile/payees/MobilePayeeEditPage.tsx` (+40 -36) 📝 `packages/desktop-client/src/components/mobile/payees/MobilePayeesPage.tsx` (+36 -32) 📝 `packages/desktop-client/src/components/mobile/rules/MobileRuleEditPage.tsx` (+24 -20) 📝 `packages/desktop-client/src/components/mobile/rules/MobileRulesPage.tsx` (+40 -33) 📝 `packages/desktop-client/src/components/mobile/schedules/MobileScheduleEditPage.tsx` (+51 -47) 📝 `packages/desktop-client/src/components/mobile/schedules/MobileSchedulesPage.tsx` (+48 -44) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionEdit.tsx` (+16 -10) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionList.tsx` (+117 -106) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionListWithBalances.tsx` (+50 -46) 📝 `packages/desktop-client/src/components/reports/reports/AgeOfMoney.tsx` (+7 -1) 📝 `packages/desktop-client/src/components/reports/reports/BalanceForecast.tsx` (+7 -1) 📝 `packages/desktop-client/src/components/reports/reports/BudgetAnalysis.tsx` (+7 -1) 📝 `packages/desktop-client/src/components/reports/reports/Calendar.tsx` (+7 -1) _...and 13 more files_ </details> ### 📄 Description Closes #7391 Wraps all remaining uncovered feature areas with `ErrorBoundary` from `react-error-boundary` (already a dependency), using the shared `FeatureErrorFallback` component. **Reports (11 components):** NetWorth, CashFlow, Spending, Calendar, BalanceForecast, Sankey, Summary, AgeOfMoney, Crossover, Formula, BudgetAnalysis **Mobile (16 components):** BudgetPage, CategoryPage, CategoryTransactions, AccountsPage, AccountPage, TransactionList, TransactionListWithBalances, TransactionEdit, MobileSchedulesPage, MobileScheduleEditPage, MobileRulesPage, MobileRuleEditPage, MobilePayeesPage, MobilePayeeEditPage, MobileBankSyncPage, MobileBankSyncAccountEditPage Each boundary wraps the outermost return of the feature's entry-point component, so a single rendering error is contained to that feature area instead of crashing the whole app. <!--- actual-bot-sections ---> <hr /> <!--- bundlestats-action-comment key:combined start ---> ### Bundle Stats Bundle | Files count | Total bundle size | % Changed ------ | ----------- | ----------------- | --------- desktop-client | 37 | 14.06 MB → 14.07 MB (+9.36 kB) | +0.06% loot-core | 1 | 5.28 MB → 5.28 MB (+230 B) | +0.00% api | 2 | 3.86 MB → 3.86 MB (+226 B) | +0.01% cli | 1 | 7.97 MB | 0% crdt | 1 | 11.12 kB | 0% <details> <summary>View detailed bundle stats</summary> #### desktop-client **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 37 | 14.06 MB → 14.07 MB (+9.36 kB) | +0.06% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `src/components/mobile/budget/CategoryPage.tsx` | 📈 +297 B (+11.96%) | 2.43 kB → 2.72 kB `locale/nl.json` | 📈 +12.48 kB (+11.68%) | 106.82 kB → 119.3 kB `src/components/mobile/payees/MobilePayeesPage.tsx` | 📈 +142 B (+4.57%) | 3.03 kB → 3.17 kB `src/components/mobile/rules/MobileRuleEditPage.tsx` | 📈 +125 B (+3.40%) | 3.59 kB → 3.72 kB `src/components/mobile/rules/MobileRulesPage.tsx` | 📈 +142 B (+3.30%) | 4.2 kB → 4.34 kB `src/components/mobile/schedules/MobileScheduleEditPage.tsx` | 📈 +148 B (+2.52%) | 5.74 kB → 5.89 kB `src/components/mobile/budget/CategoryTransactions.tsx` | 📈 +117 B (+2.39%) | 4.78 kB → 4.89 kB `src/components/mobile/banksync/MobileBankSyncPage.tsx` | 📈 +115 B (+2.32%) | 4.84 kB → 4.95 kB `src/components/mobile/payees/MobilePayeeEditPage.tsx` | 📈 +115 B (+1.82%) | 6.17 kB → 6.28 kB `src/components/mobile/schedules/MobileSchedulesPage.tsx` | 📈 +115 B (+1.70%) | 6.62 kB → 6.74 kB `src/components/mobile/accounts/AccountPage.tsx` | 📈 +115 B (+1.25%) | 8.96 kB → 9.08 kB `src/components/mobile/banksync/MobileBankSyncAccountEditPage.tsx` | 📈 +115 B (+1.24%) | 9.07 kB → 9.18 kB `src/components/reports/reports/CashFlow.tsx` | 📈 +111 B (+1.17%) | 9.27 kB → 9.37 kB `src/components/mobile/transactions/TransactionListWithBalances.tsx` | 📈 +114 B (+1.10%) | 10.1 kB → 10.21 kB `src/components/reports/reports/Formula.tsx` | 📈 +111 B (+1.08%) | 9.99 kB → 10.1 kB `src/components/reports/reports/NetWorth.tsx` | 📈 +111 B (+0.77%) | 14.16 kB → 14.27 kB `src/components/reports/reports/BalanceForecast.tsx` | 📈 +111 B (+0.73%) | 14.85 kB → 14.96 kB `src/components/mobile/transactions/TransactionList.tsx` | 📈 +119 B (+0.64%) | 18.04 kB → 18.15 kB `src/components/reports/reports/AgeOfMoney.tsx` | 📈 +111 B (+0.61%) | 17.68 kB → 17.79 kB `src/components/mobile/accounts/AccountsPage.tsx` | 📈 +124 B (+0.60%) | 20.23 kB → 20.35 kB `src/components/transactions/TransactionList.tsx` | 📈 +100 B (+0.56%) | 17.29 kB → 17.38 kB `src/components/reports/reports/BudgetAnalysis.tsx` | 📈 +111 B (+0.54%) | 19.92 kB → 20.03 kB `src/components/reports/reports/Spending.tsx` | 📈 +111 B (+0.44%) | 24.58 kB → 24.69 kB `src/components/reports/reports/Summary.tsx` | 📈 +111 B (+0.42%) | 25.57 kB → 25.68 kB `src/components/reports/reports/Calendar.tsx` | 📈 +114 B (+0.40%) | 27.58 kB → 27.7 kB `src/components/mobile/transactions/TransactionEdit.tsx` | 📈 +255 B (+0.35%) | 71.47 kB → 71.72 kB `src/components/reports/reports/Sankey.tsx` | 📈 +111 B (+0.34%) | 31.75 kB → 31.86 kB `src/components/mobile/budget/BudgetPage.tsx` | 📈 +115 B (+0.31%) | 36.12 kB → 36.23 kB `locale/en.json` | 📈 +590 B (+0.29%) | 200.02 kB → 200.59 kB `src/components/reports/reports/Crossover.tsx` | 📈 +111 B (+0.26%) | 41.16 kB → 41.27 kB `locale/de.json` | 📉 -569 B (-0.33%) | 170.65 kB → 170.1 kB `locale/pt-BR.json` | 📉 -648 B (-0.34%) | 187.97 kB → 187.34 kB `locale/ca.json` | 📉 -653 B (-0.34%) | 186.26 kB → 185.63 kB `locale/zh-Hans.json` | 📉 -412 B (-0.34%) | 116.84 kB → 116.44 kB `locale/es.json` | 📉 -646 B (-0.35%) | 178.21 kB → 177.58 kB `locale/it.json` | 📉 -617 B (-0.37%) | 164.53 kB → 163.93 kB `locale/uk.json` | 📉 -832 B (-0.39%) | 208.65 kB → 207.84 kB `locale/fr.json` | 📉 -722 B (-0.40%) | 178.06 kB → 177.35 kB `locale/nb-NO.json` | 📉 -663 B (-0.44%) | 147.72 kB → 147.07 kB `locale/th.json` | 📉 -1006 B (-0.56%) | 174.31 kB → 173.33 kB `locale/da.json` | 📉 -619 B (-0.60%) | 100.8 kB → 100.19 kB </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** Asset | File Size | % Changed ----- | --------- | --------- static/js/nl.js | 106.82 kB → 119.3 kB (+12.48 kB) | +11.68% static/js/narrow.js | 364.2 kB → 365.94 kB (+1.74 kB) | +0.48% static/js/ReportRouter.js | 1.27 MB → 1.27 MB (+1.2 kB) | +0.09% static/js/en.js | 200.02 kB → 200.59 kB (+590 B) | +0.29% static/js/TransactionEdit.js | 90.63 kB → 90.88 kB (+255 B) | +0.27% static/js/TransactionList.js | 85.81 kB → 85.93 kB (+119 B) | +0.14% static/js/ScheduleEditForm.js | 146.44 kB → 146.56 kB (+115 B) | +0.08% static/js/Value.js | 5.08 MB → 5.08 MB (+100 B) | +0.00% **Smaller** Asset | File Size | % Changed ----- | --------- | --------- static/js/th.js | 174.31 kB → 173.33 kB (-1006 B) | -0.56% static/js/uk.js | 208.65 kB → 207.84 kB (-832 B) | -0.39% static/js/fr.js | 178.06 kB → 177.35 kB (-722 B) | -0.40% static/js/nb-NO.js | 147.72 kB → 147.07 kB (-663 B) | -0.44% static/js/ca.js | 186.26 kB → 185.63 kB (-653 B) | -0.34% static/js/pt-BR.js | 187.97 kB → 187.34 kB (-648 B) | -0.34% static/js/es.js | 178.21 kB → 177.58 kB (-646 B) | -0.35% static/js/da.js | 100.8 kB → 100.19 kB (-619 B) | -0.60% static/js/it.js | 164.53 kB → 163.93 kB (-617 B) | -0.37% static/js/de.js | 170.65 kB → 170.1 kB (-569 B) | -0.33% static/js/zh-Hans.js | 116.84 kB → 116.44 kB (-412 B) | -0.34% **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- static/js/index.js | 1.56 MB | 0% static/js/BackgroundImage.js | 121.09 kB | 0% static/js/FormulaEditor.js | 962.55 kB | 0% static/js/ManageRules.js | 46.6 kB | 0% static/js/PayeeRuleCountLabel.js | 7.33 kB | 0% static/js/SchedulesTable.js | 202.7 kB | 0% static/js/_baseIsEqual.js | 98.38 kB | 0% static/js/client.js | 451.37 kB | 0% static/js/en-GB.js | 9.25 kB | 0% static/js/extends.js | 508.06 kB | 0% static/js/indexeddb-main-thread-worker-e59fee74.js | 13.46 kB | 0% static/js/resize-observer.js | 18.06 kB | 0% static/js/theme.js | 31.88 kB | 0% static/js/toString.js | 705.14 kB | 0% static/js/useFormatList.js | 2.52 kB | 0% static/js/useTransactionBatchActions.js | 9.71 kB | 0% static/js/wide.js | 298.88 kB | 0% static/js/workbox-window.prod.es5.js | 7.33 kB | 0% </div> </details> --- #### loot-core **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 5.28 MB → 5.28 MB (+230 B) | +0.00% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `home/runner/work/actual/actual/packages/loot-core/src/server/rules/action.ts` | 📈 +230 B (+2.79%) | 8.06 kB → 8.29 kB </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** Asset | File Size | % Changed ----- | --------- | --------- kcab.worker.Db9PGarl.js | 0 B → 5.28 MB (+5.28 MB) | - **Removed** Asset | File Size | % Changed ----- | --------- | --------- kcab.worker.BkkH_8jr.js | 5.28 MB → 0 B (-5.28 MB) | -100% **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** No assets were unchanged </div> </details> --- #### api **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 2 | 3.86 MB → 3.86 MB (+226 B) | +0.01% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `home/runner/work/actual/actual/packages/loot-core/src/server/rules/action.ts` | 📈 +226 B (+2.90%) | 7.6 kB → 7.82 kB </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** Asset | File Size | % Changed ----- | --------- | --------- index.js | 3.86 MB → 3.86 MB (+226 B) | +0.01% **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- models.js | 0 B | 0% </div> </details> --- #### cli **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 7.97 MB | 0% <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- cli.js | 7.97 MB | 0% </div> </details> --- #### crdt **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 11.12 kB | 0% <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- index.js | 11.12 kB | 0% </div> </details> </details> <!--- bundlestats-action-comment key:combined end ---> --- <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-06-11 21:08:06 -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#122323