Limit the number of recurring transactions returned.

This commit is contained in:
James Cole
2025-02-01 15:39:34 +01:00
parent 8dcc36880e
commit 94a3bb0443
3 changed files with 3 additions and 3 deletions

View File

@@ -513,7 +513,7 @@ class ExportDataGenerator
'currency_code', 'foreign_currency_code', 'source_name', 'source_type', 'destination_name', 'destination_type', 'amount', 'foreign_amount', 'category', 'budget', 'piggy_bank', 'tags',
];
$records = [];
$recurrences = $recurringRepos->getAll();
$recurrences = $recurringRepos->get();
/** @var Recurrence $recurrence */
foreach ($recurrences as $recurrence) {