Skip to content

Commit

Permalink
Fixed prettier lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pepe authored and pepe committed Nov 16, 2021
1 parent 55f7df8 commit 8cd92ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,16 @@ describe('Utils', () => {
class Band implements IEntity {
id: string;
name: string;

get removeFirstLetterOfName() {
if (!this.name) return ''
return this.name.charAt(0)
if (!this.name) return '';
return this.name.charAt(0);
}

@Ignore()
get capitalizedName() {
if (!this.name) return ''
return this.name.charAt(0).toUpperCase() + this.name.slice(1)
if (!this.name) return '';
return this.name.charAt(0).toUpperCase() + this.name.slice(1);
}
}

Expand Down

0 comments on commit 8cd92ba

Please sign in to comment.