Skip to content

Commit

Permalink
fix logout
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Jun 13, 2023
1 parent 43ca6cd commit da62fca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/clients/masa-client.ts
Expand Up @@ -170,9 +170,9 @@ export class MasaClient extends MasaBase {
},

logout: async (): Promise<LogoutResult | undefined> => {
const logoutResult = await this.post<null, LogoutResult>(
const logoutResult = await this.post<undefined, LogoutResult>(
"/session/logout",
null
undefined
);
delete this._cookie;
return logoutResult;
Expand Down

0 comments on commit da62fca

Please sign in to comment.