diff --git a/src/features/repeatable.tsx b/src/features/repeatable.tsx index 91e1052..ae3ecf4 100644 --- a/src/features/repeatable.tsx +++ b/src/features/repeatable.tsx @@ -225,12 +225,7 @@ export function createRepeatable( <>Amount: {formatWhole(genericRepeatable.amount.value)}, {unref(genericRepeatable.limit) !== Decimal.dInf ? ( <> / {formatWhole(unref(genericRepeatable.limit))} - ) : undefined}, - {(genericRepeatable as GenericRepeatable & GenericBonusAmountFeature).bonusAmount == null ? null : ( - Decimal.gt(unref((genericRepeatable as GenericRepeatable & GenericBonusAmountFeature).bonusAmount), 0) ? ( - <> + {formatWhole(unref((genericRepeatable as GenericRepeatable & GenericBonusAmountFeature).bonusAmount))} - ) : undefined) - } + ) : undefined} ) )}