Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ClaimEventForm.tsx #15

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/javascript/components/ClaimEventForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ const ClaimEventForm: React.FC<ClaimEventFormProps> = ({
<Form onSubmit={handleSubmit}>
<Form.Group as={Row} className="mb-3" controlId="formHorizontalEmail">
<Form.Label column sm={{ span: 2, offset: 1 }}>
To Address
Send CKB to
</Form.Label>
<Col sm="8">
<FormControl
placeholder="Enter your Pudge wallet address"
placeholder="Enter your wallet address (ckt...)"
aria-label="Pudge address"
aria-describedby="Enter your Pudge wallet address"
aria-describedby="Enter your wallet address"
name="address_hash"
value={addressHash}
onChange={handleInput}
Expand Down Expand Up @@ -89,7 +89,7 @@ const ClaimEventForm: React.FC<ClaimEventFormProps> = ({
<OverlayTrigger
overlay={
<Tooltip id="remaining-tooltip">
Your claimable amount now for this month is {remaining != null && Number(remaining).toLocaleString("en")} CKB.
Your claimable amount for this month is {remaining != null && Number(remaining).toLocaleString("en")} CKB.
</Tooltip>
}
>
Expand Down