Skip to content

Commit 8cd92ba

Browse files
pepepepe
authored andcommitted
Fixed prettier lint issues
1 parent 55f7df8 commit 8cd92ba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/utils.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,16 @@ describe('Utils', () => {
8080
class Band implements IEntity {
8181
id: string;
8282
name: string;
83-
83+
8484
get removeFirstLetterOfName() {
85-
if (!this.name) return ''
86-
return this.name.charAt(0)
85+
if (!this.name) return '';
86+
return this.name.charAt(0);
8787
}
8888

8989
@Ignore()
9090
get capitalizedName() {
91-
if (!this.name) return ''
92-
return this.name.charAt(0).toUpperCase() + this.name.slice(1)
91+
if (!this.name) return '';
92+
return this.name.charAt(0).toUpperCase() + this.name.slice(1);
9393
}
9494
}
9595

0 commit comments

Comments
 (0)