File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 } )
Original file line number Diff line number Diff 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' ) } >
You can’t perform that action at this time.
0 commit comments