Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
chore: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-lemon committed Oct 7, 2022
1 parent facfc86 commit 97c02eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lemoncloud/lemon-front-lib",
"version": "1.3.7d",
"version": "1.3.7e",
"description": "Front Core Library for Lemoncloud",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/core/identity.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class IdentityService {

this.checkCachedToken()
.then(result => this.logger.log('checkCachedToken: ', result))
.catch(err => this.logger.log('checkCachedToken: ', err));
.catch(() => this.logger.log('checkCachedToken: has no token'));
}

setOptions(options: LemonOptions) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/lemon-storage.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class LemonStorageService {

// eslint-disable-next-line @typescript-eslint/no-parameter-properties
constructor(private project: string = 'lemon', private storage: Storage = new LocalStorageService()) {
this.prefix = `@${project.toUpperCase()}_LEMON_STORAGE`;
this.prefix = `@${project.toUpperCase()}`;
this.storageService = storage;
}

Expand Down

0 comments on commit 97c02eb

Please sign in to comment.