File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,12 +87,12 @@ export default class UaChBrands extends ContentFeature {
8787 // Insert GREASE at its original position or end if out of bounds
8888 const insertAt = Math . min ( greaseIndex , result . length ) ;
8989 result . splice ( insertAt , 0 , greaseBrand ) ;
90- const brandNames = result . map ( b => `"${ b . brand } " v${ b . version } ` ) . join ( ', ' ) ;
90+ const brandNames = result . map ( ( b ) => `"${ b . brand } " v${ b . version } ` ) . join ( ', ' ) ;
9191 this . log . info ( `Applying configured brands with GREASE at index ${ insertAt } : [${ brandNames } ]` ) ;
9292 return result ;
9393 }
9494
95- const brandNames = configuredBrands . map ( b => `"${ b . brand } " v${ b . version } ` ) . join ( ', ' ) ;
95+ const brandNames = configuredBrands . map ( ( b ) => `"${ b . brand } " v${ b . version } ` ) . join ( ', ' ) ;
9696 this . log . info ( `Applying configured brands (no GREASE found): [${ brandNames } ]` ) ;
9797 return configuredBrands ;
9898 }
You can’t perform that action at this time.
0 commit comments