diff --git a/src/features/repeatable.tsx b/src/features/repeatable.tsx index d9bf372..eb34af5 100644 --- a/src/features/repeatable.tsx +++ b/src/features/repeatable.tsx @@ -235,12 +235,10 @@ export function createRepeatable( {currDisplay.showAmount === false ? null : (

- joinJSX( - <>Amount: {formatWhole(genericRepeatable.amount.value)}, - {unref(genericRepeatable.limit) !== Decimal.dInf ? ( + <>Amount: {formatWhole(genericRepeatable.amount.value)} + {Decimal.isFinite(unref(genericRepeatable.limit)) ? ( <> / {formatWhole(unref(genericRepeatable.limit))} ) : undefined} - )
)} {currDisplay.effectDisplay == null ? null : (