diff --git a/components/brave_rewards/resources/extension/brave_rewards/components/panel.tsx b/components/brave_rewards/resources/extension/brave_rewards/components/panel.tsx index 37d611a3ff90..dd1bc4e7ee0a 100644 --- a/components/brave_rewards/resources/extension/brave_rewards/components/panel.tsx +++ b/components/brave_rewards/resources/extension/brave_rewards/components/panel.tsx @@ -367,8 +367,8 @@ export class Panel extends React.Component { if (result === '0') { const currency = onlyAnonWallet ? getMessage('bap') : getMessage('bat') - const fixed = utils.convertProbiToFixed(notification.args[3]) - text = getMessage('contributeNotificationSuccess', [fixed, currency]) + const contributionAmount = parseFloat(notification.args[3]).toFixed(1) + text = getMessage('contributeNotificationSuccess', [contributionAmount, currency]) } else if (result === '15') { text = getMessage('contributeNotificationNotEnoughFunds') isAlert = 'warning'