diff --git a/src/store.js b/src/store.js index 36f2588f..ea38f0d3 100644 --- a/src/store.js +++ b/src/store.js @@ -1,6 +1,6 @@ import { writable } from 'svelte/store'; import { OpenAPI, AuthService } from '@odit/lfk-client-js'; -import localForage from "localforage"; +import localForage from 'localforage'; export let users = writable([]); export let tracks = writable([]); @@ -26,7 +26,6 @@ const store = () => { console.log('refreshing auth'); AuthService.authControllerRefresh({ token: state.auth.refresh_token }).then((auth) => { console.log('got new auth'); - console.log(auth); OpenAPI.TOKEN = auth.access_token; localForage.setItem('logindata', auth); });