1
0
Fork 0

some pattern picker fixes

This commit is contained in:
Enoch Riese 2022-07-15 17:40:18 -04:00
parent 8fc493858e
commit 72d756b621
5 changed files with 7 additions and 6 deletions

View file

@ -33,7 +33,7 @@ const PatternPicker = ({ app }) => {
}
return (<PickerLink {...patternProps} key={pattern}>
<span className="sr-only">{sectionTitle}</span> {app.navigation[section][pattern].__title}
<span className="sr-only" key={pattern}>{sectionTitle}</span> {app.navigation[section][pattern].__title}
</PickerLink>)
})}
</React.Fragment>)}