Skip to content

Commit

Permalink
message updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagarjun Sanji committed Oct 10, 2024
1 parent ffe5e3d commit e317350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/authHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class AuthHelper {
if (token) {
await this.globalStore.getGlobalStateInstance()?.setSecretData(tokenKey, token);
const message = tokenKey === TokenType.ACCESS ? Messages.ACCESS_TOKEN_SAVED : Messages.BEARER_TOKEN_SAVED;
this.statusBarMessageHelper.showInformationMessage(`Login successful. ${message}`);
this.statusBarMessageHelper.showInformationMessage(message);
} else {
const message = tokenKey === TokenType.ACCESS ? Messages.ACCESS_TOKEN_RQD : Messages.BEARER_TOKEN_RQD;
throw new Error(message);
Expand Down

0 comments on commit e317350

Please sign in to comment.