diff --git a/src/client/process/bonuses/reactions.ts b/src/client/process/bonuses/reactions.ts index dbffe4d..55dcef5 100644 --- a/src/client/process/bonuses/reactions.ts +++ b/src/client/process/bonuses/reactions.ts @@ -75,7 +75,7 @@ export default function ($calculation: ICalculationStore) { if (evo_coefficient_bonus?.evo_sot_coefficient) { const max_sale_bonus = evo_coefficient_bonus.evo_sot_coefficient * 100; - if (parseFloat(saleBonus) > round(max_sale_bonus, 2)) { + if (round(saleBonus, 2) > round(max_sale_bonus, 2)) { $calculation.setValidation('tbxSaleBonus', false); openNotification({ type: 'error',