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

Feedback typo #215

Merged
merged 3 commits into from
Apr 1, 2024
Merged
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
10 changes: 6 additions & 4 deletions src/components/feedback/FeedbackForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,20 @@ const FeedbackForm = ({ authToken, event, attended, onSubmit }: FeedbackFormProp
<Typography variant="h2/bold" component="h2">
Feedback
</Typography>
<p>
Feel free to give event suggestions, friendly words, constructive crisitism, or just say
<Typography variant="h6/regular">
Feel free to give event suggestions, friendly words, constructive criticism, or just say
what’s on your mind!
</p>
</Typography>
<textarea
aria-label="Feedback description"
placeholder="The Hack School event had informational slides that taught more niche topics than usual, so I learned a lot."
value={response}
onChange={e => setResponse(e.currentTarget.value)}
className={styles.field}
/>
<p>The following questions are optional. You can elaborate on your responses above.</p>
<Typography variant="h6/regular">
The following questions are optional. You can elaborate on your responses above.
</Typography>
<FeedbackChoice
question="How did you hear about this event?"
choices={[
Expand Down
Loading