Skip to content

Commit

Permalink
Update main.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored Jul 22, 2024
1 parent 5de1f8c commit 2b2cefa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion showcases/angular-ssr-showcase/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from '../../angular-showcase/src/app/app.component';
import { appConfig } from './app/app.config';

bootstrapApplication(AppComponent, appConfig).catch((error) => {
bootstrapApplication(AppComponent, appConfig).catch((error: unknown) => {
console.error(error);
});

0 comments on commit 2b2cefa

Please sign in to comment.