Skip to content

Commit

Permalink
prettier second pass
Browse files Browse the repository at this point in the history
  • Loading branch information
amenconi committed Feb 28, 2024
1 parent 702cbd9 commit 5a48cda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ import { AuthService } from '@components/auth/services/auth.service';
providedIn: 'root',
})
export class Build5ErrorLookupService {
constructor(
public auth: AuthService,
) {

}
constructor(public auth: AuthService) {}

public getErrorMessage(errorCode: number): string {
// Convert WenError object to an array and find the entry by error code
Expand Down
6 changes: 1 addition & 5 deletions src/app/@shell/ui/footer/footer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,5 @@ import { AuthService } from '@components/auth/services/auth.service';
})
export class FooterComponent {
// No need to inject NftSelectionService or maintain selectedCount$
constructor(
public auth: AuthService,
) {

}
constructor(public auth: AuthService) {}
}

0 comments on commit 5a48cda

Please sign in to comment.