Skip to content

Commit

Permalink
removed placeholder for contact form, since it works now.
Browse files Browse the repository at this point in the history
  • Loading branch information
sirrenberg committed Mar 28, 2024
1 parent aff852b commit 2189b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ContactForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function TextControlsExample() {
</Form.Group>
<Form.Group className="mb-3 left-aligned-form-label" controlId="exampleForm.ControlTextarea1">
<Form.Label>Your message</Form.Label>
<Form.Control className="rounded-0 message-form-control" as="textarea" rows={3} placeholder="Please connect with me via LinkedIn. I didn't have time to set up a mailing Server yet." onChange={e => setFormState(prevState => ({ ...prevState, message : e.target.value }))}/>
<Form.Control className="rounded-0 message-form-control" as="textarea" rows={3} onChange={e => setFormState(prevState => ({ ...prevState, message : e.target.value }))}/>
</Form.Group>
<Button className="rounded-0 submit-button" type="submit"><span>{buttonText}</span></Button>
</Form>
Expand Down

0 comments on commit 2189b9e

Please sign in to comment.