Fix misleading title #88

This commit is contained in:
Arnaud 2024-11-28 16:16:50 +01:00
parent 40c0b84e5c
commit 333cd5b71e
No known key found for this signature in database
GPG Key ID: 69D6CE281FCAE663

View File

@ -282,13 +282,13 @@ export function StorageRequestReview({
onChange={onAvailabilityChange} onChange={onAvailabilityChange}
onValidation={isInvalidAvailability}></Commitment> onValidation={isInvalidAvailability}></Commitment>
<CardNumbers <CardNumbers
helper="Represents how much collateral is asked from hosts that wants to fill a slots" helper="Represents how much collateral is asked from hosts if they don't fulfill the contract."
id="collateral" id="collateral"
unit={"Collateral"} unit={"Collateral"}
value={storageRequest.collateral.toString()} value={storageRequest.collateral.toString()}
onChange={onCollateralChange} onChange={onCollateralChange}
onValidation={isInvalidNumber} onValidation={isInvalidNumber}
title="Reward tokens for hosts"></CardNumbers> title="Penality tokens"></CardNumbers>
<CardNumbers <CardNumbers
helper="The maximum amount of tokens paid per second per slot to hosts the client is willing to pay." helper="The maximum amount of tokens paid per second per slot to hosts the client is willing to pay."
id="reward" id="reward"
@ -296,7 +296,7 @@ export function StorageRequestReview({
value={storageRequest.reward.toString()} value={storageRequest.reward.toString()}
onChange={onRewardChange} onChange={onRewardChange}
onValidation={isInvalidNumber} onValidation={isInvalidNumber}
title="Penality tokens"></CardNumbers> title="Reward tokens for hosts"></CardNumbers>
</div> </div>
<div className="row"> <div className="row">