You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/components_guide_web/templates/react_typescript/form-reducers.html.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -247,7 +247,7 @@ So we have our errors. Let’s store them in state so we can render them using R
247
247
248
248
Let’s wrap what we have so far into an actual component, and store the errors using the `useState` hook.
249
249
250
-
We also display the error message alongside its form field. We use the `aria-describedby` attribute so that assistive technology like screen readers know which input has which error message. (The more specific `aria-errormessage` attribute is unfortunately [not well supported](https://a11ysupport.io/tech/aria/aria-errormessage_attribute).)
250
+
We also display the error message alongside its form field. We use the `aria-describedby` attribute so that assistive technology like screen readers know which input has which error message. (The more specific `aria-errormessage` attribute is unfortunately [not well supported](https://a11ysupport.io/tech/aria/aria-errormessage_attribute) and so it’s [recommended to use `aria-describedby` instead](https://www.davidmacd.com/blog/test-aria-describedby-errormessage-aria-live.html).)
0 commit comments