Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Lms24 committed Feb 23, 2023
1 parent b885dbc commit cf95712
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/angular-ivy/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ module.exports = {
browser: true,
},
extends: ['../../.eslintrc.js'],
ignorePatterns: ['setup-jest.ts'],
};
2 changes: 1 addition & 1 deletion packages/angular-ivy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## Angular Version Compatibility

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

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).

Expand Down
2 changes: 1 addition & 1 deletion packages/angular/src/tracing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function getActiveTransaction(): Transaction | undefined {
export class TraceService implements OnDestroy {
public navStart$: Observable<Event> = this._router.events.pipe(
filter((event): event is NavigationStart => event instanceof NavigationStart),
tap((navigationEvent: NavigationStart) => {
tap(navigationEvent => {
if (!instrumentationInitialized) {
IS_DEBUG_BUILD &&
logger.error('Angular integration has tracing enabled, but Tracing integration is not configured');
Expand Down

0 comments on commit cf95712

Please sign in to comment.