diff --git a/apps/client/src/app/core/http-response.interceptor.ts b/apps/client/src/app/core/http-response.interceptor.ts index 3d3a226a9..5c7d57070 100644 --- a/apps/client/src/app/core/http-response.interceptor.ts +++ b/apps/client/src/app/core/http-response.interceptor.ts @@ -26,8 +26,8 @@ import { catchError, tap } from 'rxjs/operators'; @Injectable() export class HttpResponseInterceptor implements HttpInterceptor { - public info: InfoItem; - public snackBarRef: MatSnackBarRef | undefined; + private readonly info: InfoItem; + private snackBarRef: MatSnackBarRef | undefined; private readonly dataService = inject(DataService); private readonly router = inject(Router);