We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cc39d6 commit f76184aCopy full SHA for f76184a
1 file changed
src/landings/components/CategoryLanding.tsx
@@ -122,7 +122,7 @@ export const CategoryLanding = () => {
122
<div className="pt-8">
123
<div className="py-5 border-bottom">
124
<div className="pb-3 mr-5 ml-1 float-xl-left">
125
- <h2>
+ <h2 aria-live="polite">
126
{t('explore_articles').replace('{{ number }}', searchResults.length.toString())}
127
</h2>
128
</div>
@@ -135,7 +135,7 @@ export const CategoryLanding = () => {
135
/>
136
137
138
- <ul className="clearfix d-flex flex-wrap gutter-md-spacious">
+ <ul className="clearfix d-flex flex-wrap gutter-md-spacious" aria-live="polite">
139
{searchResults.map((item, index) => (
140
<li key={index} className="col-md-6 col-lg-4 col-sm-12 list-style-none p-4">
141
<CookBookArticleCard
0 commit comments