Skip to content

Commit

Permalink
Apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterEvarior committed Nov 13, 2024
1 parent e7a084e commit 68033ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('CheckInFormComponent', () => {
de: de,
}),
],
declarations: [CheckInFormMetricComponent,],
declarations: [CheckInFormMetricComponent],
providers: [],
});
fixture = TestBed.createComponent(CheckInFormMetricComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Pipe, PipeTransform } from '@angular/core';
})
export class UnitTransformationPipe implements PipeTransform {
transform(value: number, label: string): string {
return this.transformValue(value) + this.transformLabel(label)
return this.transformValue(value) + this.transformLabel(label);
}

transformValue(value: number): string {
Expand Down

0 comments on commit 68033ac

Please sign in to comment.