style(user.service): fix string formatting in getCurrentUser method
This commit is contained in:
parent
454e99f812
commit
1768cf6536
1 changed files with 1 additions and 1 deletions
|
@ -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> {
|
||||||
|
|
Loading…
Add table
Reference in a new issue