Skip to content

Commit 28316fe

Browse files
committed
fix: animations
1 parent 5b87c05 commit 28316fe

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

frontend/src/angular/src/app/app.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
limitations under the License.
1414
*/
1515
import { Component } from "@angular/core";
16-
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
16+
1717
import { MatProgressSpinnerModule } from "@angular/material/progress-spinner";
1818
import { Router, RouterModule } from "@angular/router";
1919
import { CommonModule } from "@angular/common";
@@ -23,7 +23,6 @@ import { CommonModule } from "@angular/common";
2323
imports: [
2424
RouterModule,
2525
CommonModule,
26-
BrowserAnimationsModule,
2726
MatProgressSpinnerModule],
2827
templateUrl: "./app.component.html",
2928
styleUrls: ["./app.component.scss"],

frontend/src/angular/src/app/splash/splash.component.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@ import {
2222
style,
2323
} from "@angular/animations";
2424
import { MatProgressSpinnerModule } from "@angular/material/progress-spinner";
25-
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
26-
import { BrowserModule } from "@angular/platform-browser";
25+
import { CommonModule } from "@angular/common";
2726

2827
@Component({
2928
selector: "app-splash",
3029
imports: [
31-
BrowserModule,
32-
BrowserAnimationsModule,
30+
CommonModule,
3331
MatProgressSpinnerModule],
3432
templateUrl: "./splash.component.html",
3533
styleUrls: ["./splash.component.scss"],

0 commit comments

Comments
 (0)