Update client dependencies

This commit is contained in:
Ken-Håvard Lieng 2018-03-25 01:34:41 +01:00
parent 20c3855ced
commit 19bcc51eb4
13 changed files with 2973 additions and 1741 deletions

View file

@ -3,9 +3,10 @@ import debounce from 'lodash/debounce';
import { getSelectedTab } from 'state/tab';
import { observe } from 'util/observe';
const saveTab = debounce(tab =>
Cookie.set('tab', tab.toString(), { expires: 30 })
, 1000);
const saveTab = debounce(
tab => Cookie.set('tab', tab.toString(), { expires: 30 }),
1000
);
export default function storage({ store }) {
observe(store, getSelectedTab, tab => {