Skip to content

Commit 6c18aec

Browse files
authored
Merge pull request #18186 from github/repo-sync
repo sync
2 parents b1529fd + ca65e87 commit 6c18aec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/Search.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ function ShowSearchResults({
339339
const versions = Array.from(latestVersions).map((version) => {
340340
return {
341341
title: allVersions[version].versionTitle,
342-
version: version,
342+
version,
343343
}
344344
})
345345

components/guides/ArticleCards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const ArticleCards = () => {
5050
const guides = isUserFiltering ? filteredResults : includeGuides || []
5151

5252
const types = Object.entries(guideTypes).map(([key, val]) => {
53-
return { text: val, key: key }
53+
return { text: val, key }
5454
}) as ItemInput[]
5555

5656
types.unshift({ text: t('filters.all'), key: undefined })

components/landing/TableOfContents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const TableOfContents = (props: Props) => {
6666
}
6767
: {
6868
key: href,
69-
title: title,
69+
title,
7070
renderItem: () => (
7171
<ActionList.Item className={cx('border-bottom')}>
7272
<li key={href} className={cx('mt-2', isActive && 'color-fg-muted')}>

0 commit comments

Comments
 (0)