style(user.service): fix string formatting in getCurrentUser method

This commit is contained in:
Jan-Marlon Leibl 2025-03-05 12:08:06 +01:00
parent 454e99f812
commit 1768cf6536
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5

View file

@ -15,7 +15,7 @@ export class UserService {
} }
public getCurrentUser(): Observable<User | null> { public getCurrentUser(): Observable<User | null> {
return this.http.get<User | null>(`/backend/user`).pipe(catchError(() => EMPTY)); return this.http.get<User | null>('/backend/user').pipe(catchError(() => EMPTY));
} }
public createUser(id: string, username: string): Observable<User> { public createUser(id: string, username: string): Observable<User> {