Skip to content

Commit

Permalink
fix: final price round
Browse files Browse the repository at this point in the history
  • Loading branch information
irisdv committed Nov 15, 2023
1 parent d4a56ec commit e1f7a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/identities/actions/autoRenewalModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const AutoRenewalModal: FunctionComponent<AutoRenewalModalProps> = ({
}

const txMetadataHash = "0x" + metadataHash;
const finalPrice = Number(price) + Number(salesTaxAmount);
const finalPrice = BigInt(price) + BigInt(salesTaxAmount);
calls.push(
autoRenewalCalls.enableRenewal(
callDataEncodedDomain[1].toString(),
Expand Down

0 comments on commit e1f7a23

Please sign in to comment.