Skip to content

Commit a8c3d58

Browse files
committed
minor cleanup
1 parent 40a4600 commit a8c3d58

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

packages/angular-ivy/.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ module.exports = {
33
browser: true,
44
},
55
extends: ['../../.eslintrc.js'],
6-
ignorePatterns: ['setup-jest.ts'],
76
};

packages/angular-ivy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
## Angular Version Compatibility
1515

16-
The latest version of this SDK officially supports Angular 12-15 with Ivy.
16+
The latest version of this SDK officially supports Angular 12-15 with Angular's new rendering engine, Ivy.
1717

1818
If you're using Angular 10, 11 or a newer Angular version with View Engine instead of Ivy, please use [`@sentry/angular`](https://github.com/getsentry/sentry-javascript/blob/develop/packages/angular/README.md).
1919

packages/angular/src/tracing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export function getActiveTransaction(): Transaction | undefined {
7070
export class TraceService implements OnDestroy {
7171
public navStart$: Observable<Event> = this._router.events.pipe(
7272
filter((event): event is NavigationStart => event instanceof NavigationStart),
73-
tap((navigationEvent: NavigationStart) => {
73+
tap(navigationEvent => {
7474
if (!instrumentationInitialized) {
7575
IS_DEBUG_BUILD &&
7676
logger.error('Angular integration has tracing enabled, but Tracing integration is not configured');

0 commit comments

Comments
 (0)