Skip to content

Commit

Permalink
Update with angular 19 specific changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-arroyo committed Jan 9, 2025
1 parent da12869 commit b64d1a4
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import { CommonModule } from '@angular/common';
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
standalone: true,
imports: [
CommonModule,
MsalModule,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ import { Component } from '@angular/core';
selector: 'login-failed',
template: `<p>Login failed. Please try again.</p>`,
styleUrls: [],
standalone: true,
})
export class FailedComponent {}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { filter } from 'rxjs/operators';
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: [],
standalone: true,
imports: [CommonModule],
})
export class HomeComponent implements OnInit {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ type ProfileType = {
selector: 'app-profile',
templateUrl: './profile.component.html',
styleUrls: [],
standalone: true,
})
export class ProfileComponent implements OnInit {
profile: ProfileType | undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<title>Angular 19 Sample App</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
Expand Down

0 comments on commit b64d1a4

Please sign in to comment.