From 91905a97dcae750f20d2aa5464665a35b5888dd9 Mon Sep 17 00:00:00 2001 From: olzzon Date: Sun, 4 Oct 2020 13:47:57 +0200 Subject: [PATCH] fix: typo - CHANNEL_ACTIONS constant was left over in SettingsStorage.ts --- server/utils/SettingsStorage.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/server/utils/SettingsStorage.ts b/server/utils/SettingsStorage.ts index 5445da71..2159b9d4 100644 --- a/server/utils/SettingsStorage.ts +++ b/server/utils/SettingsStorage.ts @@ -1,13 +1,10 @@ // Node Modules: const fs = require('fs') const path = require('path') -import { store, state } from '../reducers/store' +import { store } from '../reducers/store' // Redux: -import { - CHANNEL_ACTIONS, - storeSetCompleteChState, -} from '../reducers/channelActions' +import { storeSetCompleteChState } from '../reducers/channelActions' import { SET_COMPLETE_FADER_STATE } from '../reducers/faderActions' import { logger } from './logger'