From b739f134bf8c0bb14dc563681ea1f1752becdf72 Mon Sep 17 00:00:00 2001 From: Ken Blanchard Date: Tue, 10 Dec 2024 13:35:40 -0400 Subject: [PATCH] Prevent SR from announcing 'required' twice --- src/components/FieldSetLegend.tsx | 2 +- src/components/InputLabel.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/FieldSetLegend.tsx b/src/components/FieldSetLegend.tsx index 6cf91d3ff..f6c88ab56 100644 --- a/src/components/FieldSetLegend.tsx +++ b/src/components/FieldSetLegend.tsx @@ -16,7 +16,7 @@ const FieldSetLegend = ({

{label} - {required &&  {textRequired}} + {required && }

) diff --git a/src/components/InputLabel.tsx b/src/components/InputLabel.tsx index 8164dbc9e..b999dca41 100644 --- a/src/components/InputLabel.tsx +++ b/src/components/InputLabel.tsx @@ -16,7 +16,7 @@ const InputLabel = ({ return ( ) }