diff --git a/pages/airdrops/manage.tsx b/pages/airdrops/manage.tsx index 97fde0bf..962be387 100644 --- a/pages/airdrops/manage.tsx +++ b/pages/airdrops/manage.tsx @@ -429,26 +429,26 @@ const ManageAirdropPage: NextPage = () => { )}
setRecipientAddress(e.target.value)} - placeholder="Enter recipient address (wallet address by default)" + placeholder="Enter recipient address (current wallet address by default)" type="string" value={recipientAddress?.toString()} /> { Number(e.target.value) === 0 ? setWithdrawalAmount(undefined) : setWithdrawalAmount(Number(e.target.value)) }} - placeholder="Enter the amount to be withdrawn" + placeholder="Enter the amount to be withdrawn (optional)" type="number" value={withdrawalAmount === 0 ? undefined : withdrawalAmount} />