Skip to content

Commit afaa508

Browse files
Lint fix
1 parent f70c326 commit afaa508

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

injected/src/features/breakage-reporting.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ export default class BreakageReporting extends ContentFeature {
2323
const getReloaded = this.getFeatureSettingEnabled('getReloaded', 'enabled');
2424
if (getReloaded) {
2525
result.pageReloaded =
26-
(window.performance.navigation && window.performance.navigation.type === 1) ||
27-
/** @type {PerformanceNavigationTiming[]} */
28-
(window.performance.getEntriesByType('navigation'))
29-
.map((nav) => nav.type)
30-
.includes('reload');
26+
(window.performance.navigation && window.performance.navigation.type === 1) ||
27+
/** @type {PerformanceNavigationTiming[]} */
28+
(window.performance.getEntriesByType('navigation')).map((nav) => nav.type).includes('reload');
3129
}
3230

3331
// Only run detectors if explicitly configured

0 commit comments

Comments
 (0)