Skip to content

Commit

Permalink
refactor(web): update-deposit-tab-labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Harman-singh-waraich committed Apr 5, 2024
1 parent 00eedc6 commit c678ae0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/src/pages/SubmitList/ItemParameters/Deposit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ const Deposit: React.FC = () => {
callback={(val) => setListData({ ...listData, submissionBaseDeposit: formatETH(BigInt(val), 5) })}
min={parseEthToNumber("0.00001")}
max={parseEthToNumber("0.01")}
leftLabel="Too low"
rightLabel="Too high"
leftLabel="0.00001 ETH"
rightLabel="0.01 ETH"
label={`${listData.submissionBaseDeposit} ETH`}
value={parseEthToNumber(listData.submissionBaseDeposit)}
/>
Expand All @@ -85,8 +85,8 @@ const Deposit: React.FC = () => {
callback={(val) => setListData({ ...listData, removalBaseDeposit: formatETH(BigInt(val), 5) })}
min={parseEthToNumber("0.00001")}
max={parseEthToNumber("0.01")}
leftLabel="Too low"
rightLabel="Too high"
leftLabel="0.00001 ETH"
rightLabel="0.01 ETH"
label={`${listData.removalBaseDeposit} ETH`}
value={parseEthToNumber(listData.removalBaseDeposit)}
/>
Expand Down

0 comments on commit c678ae0

Please sign in to comment.