Skip to content

Commit

Permalink
fix quick link title label (no hard-coded lables)
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-leal committed Dec 14, 2023
1 parent aaa4848 commit a3687af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/src/modules/components/AppSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@ function NewStartScreen() {
];
return (
<React.Fragment>
<p className="DocSearch-NewStartScreenHeader">{t('algoliaSearchHeader')}</p>
<p className="DocSearch-NewStartScreenHeader">
{/* eslint-disable-next-line material-ui/no-hardcoded-labels */}
{'Quick links'}
</p>
<div className="DocSearch-NewStartScreen">
{startScreenOptions.map(({ category, items }) => (
<div key={category.name} className="DocSearch-NewStartScreenCategory">
Expand Down
1 change: 0 additions & 1 deletion docs/translations/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
"albumTitle": "Album",
"searchButton": "Search…",
"algoliaSearch": "What are you looking for?",
"algoliaSearchHeader": "Quick links",
"appFrame": {
"changeLanguage": "Change language",
"github": "GitHub repository",
Expand Down

0 comments on commit a3687af

Please sign in to comment.