diff --git a/src/components/SavingsPlanSimulator.tsx b/src/components/SavingsPlanSimulator.tsx
index 7c8681e..40cba52 100644
--- a/src/components/SavingsPlanSimulator.tsx
+++ b/src/components/SavingsPlanSimulator.tsx
@@ -352,19 +352,22 @@ export const SavingsPlanSimulator = ({
{stocks.map(stock => (
-
-
-
{stock.name}
-
handleAllocationChange(stock.id, Number(e.target.value))}
- className="border p-1 rounded dark:bg-slate-700 dark:text-white dark:border-slate-600 w-16 text-right"
- />
-
%
+
+
+
+
{stock.name}
+
handleAllocationChange(stock.id, Number(e.target.value))}
+ className="border p-1 rounded dark:bg-slate-700 dark:text-white dark:border-slate-600 w-16 text-right"
+ />
+
%
+
+
Equals: {totalAmount * (allocations[stock.id] || 0) / 100}€
))}