dropped redundant console.log

ref #29
This commit is contained in:
Philipp Dormann 2021-01-10 13:06:48 +01:00
parent 2cbb431acc
commit 2a37dfafa4

View File

@ -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);
});