Skip to content

Commit

Permalink
rm unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
lardbit committed Aug 16, 2024
1 parent 3dbcf52 commit 7a7cf2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/src/app/api.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,8 @@ export class ApiService {
console.log('token auth', data);
this.userToken = data.token;
this.localStorage.set(this.STORAGE_KEY_API_TOKEN, this.userToken).subscribe(
(wasSet) => {
console.log('local storage set', wasSet);
() => {
console.log('local storage set');
},
(error) => {
console.error('local storage error', error);
Expand Down

0 comments on commit 7a7cf2c

Please sign in to comment.