Skip to content

Commit d1cd707

Browse files
committed
formatting
1 parent 53b461b commit d1cd707

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dev-packages/e2e-tests/test-applications/angular-19/src/app/app.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import {
55
provideAppInitializer,
66
provideZoneChangeDetection,
77
} from '@angular/core';
8-
import { provideRouter, Router } from '@angular/router';
8+
import { Router, provideRouter } from '@angular/router';
99

10+
import { TraceService, createErrorHandler } from '@sentry/angular';
1011
import { routes } from './app.routes';
11-
import { createErrorHandler, TraceService } from '@sentry/angular';
1212

1313
export const appConfig: ApplicationConfig = {
1414
providers: [

dev-packages/e2e-tests/test-applications/angular-19/src/app/app.routes.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { Routes } from '@angular/router';
2-
import { UserComponent } from './user/user.component';
3-
import { HomeComponent } from './home/home.component';
4-
import { CancelComponent } from './cancel/cancel.components';
52
import { cancelGuard } from './cancel-guard.guard';
3+
import { CancelComponent } from './cancel/cancel.components';
64
import { ComponentTrackingComponent } from './component-tracking/component-tracking.components';
5+
import { HomeComponent } from './home/home.component';
6+
import { UserComponent } from './user/user.component';
77

88
export const routes: Routes = [
99
{

dev-packages/e2e-tests/test-applications/angular-19/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
2-
import { appConfig } from './app/app.config';
32
import { AppComponent } from './app/app.component';
3+
import { appConfig } from './app/app.config';
44

55
import * as Sentry from '@sentry/angular';
66

0 commit comments

Comments
 (0)