From 2a37dfafa426e070aa136d171a1a01aa7f609d18 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Sun, 10 Jan 2021 13:06:48 +0100 Subject: [PATCH] dropped redundant console.log ref #29 --- src/store.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); });