Skip to content

Commit

Permalink
remove unused style sheets, add OnPush change detection
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesribeiro committed Aug 14, 2023
1 parent 99a01a3 commit e3ed3be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Empty file.
4 changes: 2 additions & 2 deletions src/app/features/shared/containers/error/error.component.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Component } from "@angular/core";
import { ChangeDetectionStrategy, Component } from "@angular/core";

@Component({
selector: "app-error",
templateUrl: "./error.component.html",
styleUrls: ["./error.component.sass"],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class ErrorComponent {}
Empty file.
4 changes: 2 additions & 2 deletions src/app/features/shared/containers/loader/loader.component.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Component } from "@angular/core";
import { ChangeDetectionStrategy, Component } from "@angular/core";

@Component({
selector: "app-loader",
templateUrl: "./loader.component.html",
styleUrls: ["./loader.component.sass"],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class LoaderComponent {}

0 comments on commit e3ed3be

Please sign in to comment.