We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43c997a commit aecff8dCopy full SHA for aecff8d
src/components/Modals/EditPriceAndBeneficiaryModal/EditPriceAndBeneficiaryModal.tsx
@@ -115,7 +115,7 @@ export default class EditPriceAndBeneficiaryModal extends React.PureComponent<Pr
115
const { item, isOffchainPublicItemOrdersEnabledVariants } = this.props
116
const variantWallet = isOffchainPublicItemOrdersEnabledVariants?.payload.value.trim()
117
if (variantWallet?.toLocaleLowerCase() === item.owner?.toLocaleLowerCase()) {
118
- return ethers.constants.MaxUint256.toString()
+ return ethers.utils.formatEther(ethers.constants.MaxUint256)
119
}
120
return item.price && item.price !== ethers.constants.MaxUint256.toString() ? ethers.utils.formatEther(item.price) : undefined
121
0 commit comments