fix hot-reload settings

This commit is contained in:
Shin'ya Ueoka 2017-11-13 19:44:19 +09:00
parent 91ea58008c
commit c202ab0529
4 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,8 @@
import actions from 'content/actions';
const defaultState = {
keymaps: new Map(),
// keymaps is and arrays of key-binding pairs, which is entries of Map
keymaps: [],
};
export default function reducer(state = defaultState, action = {}) {