From cdadc7d53333418ebf2e1c45bc16345db10a102e Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 17 Aug 2025 16:47:39 +0200 Subject: [PATCH] Fix #10773 for budget limits. --- app/Transformers/BudgetLimitTransformer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Transformers/BudgetLimitTransformer.php b/app/Transformers/BudgetLimitTransformer.php index 29e1aac8cf..12107e5636 100644 --- a/app/Transformers/BudgetLimitTransformer.php +++ b/app/Transformers/BudgetLimitTransformer.php @@ -100,7 +100,7 @@ class BudgetLimitTransformer extends AbstractTransformer 'currency_symbol' => $currency->symbol, 'currency_decimal_places' => $currency->decimal_places, - 'primary_currency_id' => (int)$this->primaryCurrency->id, + 'primary_currency_id' => (string) $this->primaryCurrency->id, 'primary_currency_name' => $this->primaryCurrency->name, 'primary_currency_code' => $this->primaryCurrency->code, 'primary_currency_symbol' => $this->primaryCurrency->symbol,