Skip to content

Commit 1125d9d

Browse files
committed
Lint
1 parent 271e18d commit 1125d9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

injected/src/features/ua-ch-brands.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)