diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-24 21:18:25 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-24 21:18:25 -0400 |
commit | 12551843966b285ce3113fe0243626cc961a7715 (patch) | |
tree | a447d966996aeb412368b46639c121a4ee4c96f2 | |
parent | cb3b7710b9e32df408b3a38383aca049fa98214e (diff) | |
download | JellySolutions-12551843966b285ce3113fe0243626cc961a7715.tar.gz JellySolutions-12551843966b285ce3113fe0243626cc961a7715.tar.bz2 JellySolutions-12551843966b285ce3113fe0243626cc961a7715.zip |
Added comment
-rw-r--r-- | ufund-ui/src/app/services/users.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/services/users.service.ts b/ufund-ui/src/app/services/users.service.ts index 6709192..8515073 100644 --- a/ufund-ui/src/app/services/users.service.ts +++ b/ufund-ui/src/app/services/users.service.ts @@ -45,7 +45,7 @@ export class UsersService { } updateUser(user: User): Observable<User> { - return this.http.put<User>(`${this.url}/${user.username}`, user, this.httpOptions2) + return this.http.put<User>(`${this.url}/${user.username}`, user, this.httpOptions2) // This line is causing issues as the key is not properly being passed } deleteUser(id: number): Observable<boolean> { |