diff --git a/src/pages/App/DesktopLayout.js b/src/pages/App/DesktopLayout.js index 6a474fc..1c46dc5 100644 --- a/src/pages/App/DesktopLayout.js +++ b/src/pages/App/DesktopLayout.js @@ -88,7 +88,6 @@ export const DesktopLayout = observer(() => { width={"50%"} onClose={() => { store.ui.toggleLeftDrawerIsShown() - console.log("clicked"); }} visible={store.ui.leftDrawerIsShown} key={"dashboard-drawer"} @@ -211,7 +210,6 @@ export const DesktopLayout = observer(() => { } onClick={() => { store.ui.toggleLeftDrawerIsShown(); - console.log("apa") }} />
{ @@ -61,6 +53,5 @@ export class Authentication { TokenUtil.clearAccessToken(); TokenUtil.persistToken(); this.isLoggedIn = false; - this.accessToken = ''; } } diff --git a/src/store/index.js b/src/store/index.js index 3d345dd..cb89030 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -18,7 +18,6 @@ export class Store { TokenUtil.loadToken(); if (TokenUtil.accessToken) { this.authentication.isLoggedIn = true; - this.authentication.accessToken = TokenUtil.accessToken; } } }