diff --git a/package.json b/package.json index b800d9c..861c73c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gamebetr/api-client-js", - "version": "1.0.14", + "version": "1.0.15", "description": "Gamebetr API client library", "repository": { "type": "git", diff --git a/src/token.js b/src/token.js index 0308497..fb6935e 100644 --- a/src/token.js +++ b/src/token.js @@ -64,7 +64,7 @@ export default class Token { return this.getCookie(this.tokenName); } else { // else use auth cookie - const auth = JSON.parse(this.getCookie('auth')) + const auth = JSON.parse(this.getCookie('auth')); return auth.token.clearToken; } }