diff --git a/resources/twig/budgets/show.twig b/resources/twig/budgets/show.twig
index 4f1decf607..63f1e90c32 100644
--- a/resources/twig/budgets/show.twig
+++ b/resources/twig/budgets/show.twig
@@ -70,7 +70,7 @@
{% set overspent = rep.amount + spentInRep < 0 %}
{% if overspent %}
- {% set pct = (spentInRep != 0 ? (rep.amount / (spentInRep*-1))*100 : 0) %}
+ {% set pct = (spentInRep != 0 ? (rep.amount / (spentInRep*-1))*100 : 0) %}
diff --git a/resources/twig/list/piggy-bank-events.twig b/resources/twig/list/piggy-bank-events.twig
index b6e7ffa8b5..14761b5007 100644
--- a/resources/twig/list/piggy-bank-events.twig
+++ b/resources/twig/list/piggy-bank-events.twig
@@ -24,10 +24,8 @@
{% if event.amount < 0 %}
-
- {{ trans('firefly.removed_amount', {amount: (event.amount*-1)|formatAmountPlain})|raw }}
+ {{ trans('firefly.removed_amount', {amount: (event.amount)|formatAmountPlain})|raw }}
{% else %}
-
{{ trans('firefly.added_amount', {amount: (event.amount)|formatAmountPlain})|raw }}
{% endif %}
|