Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Set initial claim invest input amount to an empty string (#2280)
Browse files Browse the repository at this point in the history
Co-authored-by: Leandro <[email protected]>
  • Loading branch information
alfetopito and Leandro authored Jan 25, 2022
1 parent 1a0e727 commit 49425bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/custom/pages/Claim/InvestmentFlow/InvestOption.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function InvestOption({ approveData, claim, optionIndex }: Invest
const { isSmartContractWallet } = useWalletInfo()

const [percentage, setPercentage] = useState<string>('0')
const [typedValue, setTypedValue] = useState<string>('0')
const [typedValue, setTypedValue] = useState<string>('')
const [inputWarning, setInputWarning] = useState<string>('')

const investedAmount = investFlowData[optionIndex].investedAmount
Expand Down

0 comments on commit 49425bf

Please sign in to comment.