diff --git a/src/app/@core/services/build5-error-lookup/build5-error-lookup.service.ts b/src/app/@core/services/build5-error-lookup/build5-error-lookup.service.ts index 0827f3b..b09cae9 100644 --- a/src/app/@core/services/build5-error-lookup/build5-error-lookup.service.ts +++ b/src/app/@core/services/build5-error-lookup/build5-error-lookup.service.ts @@ -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 diff --git a/src/app/@shell/ui/footer/footer.component.ts b/src/app/@shell/ui/footer/footer.component.ts index 54fe8dd..e2cfe62 100644 --- a/src/app/@shell/ui/footer/footer.component.ts +++ b/src/app/@shell/ui/footer/footer.component.ts @@ -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) {} }