Skip to content

Commit

Permalink
fix: valid attribute value
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliaghisini committed Jul 11, 2024
1 parent 0b279f8 commit 21cf9b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/FeedbackForm/Steps/CommentsStep.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ const CommentsStep = ({
autoFocus={step === 1}
id="comment"
label={intl.formatMessage(messages.label_comment)}
aria-invalid={invalid}
invalid={invalid}
aria-invalid={invalid ? invalid : undefined}
invalid={invalid ? invalid : undefined}
className="mt-1"
data-element="feedback-input-text"
/>
Expand Down

0 comments on commit 21cf9b2

Please sign in to comment.