diff options
author | 2022-11-02 16:31:43 +0100 | |
---|---|---|
committer | 2022-11-02 16:31:43 +0100 | |
commit | c4c713988a62c2ca1ea92778f2cebbfd483c98f1 (patch) | |
tree | 0e29b53992a452559f221df698fa2e1d5aa1ce1b /web/source/settings/redux/index.js | |
parent | [chore] Bump CI dependencies (#944) (diff) | |
download | gotosocial-c4c713988a62c2ca1ea92778f2cebbfd483c98f1.tar.xz |
[frontend] change bundler to skulk (#942)
* replace web bundler with skulk
* upgrade skulk
* add license
Diffstat (limited to 'web/source/settings/redux/index.js')
-rw-r--r-- | web/source/settings/redux/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/source/settings/redux/index.js b/web/source/settings/redux/index.js index e0dbe9b23..f18b8e452 100644 --- a/web/source/settings/redux/index.js +++ b/web/source/settings/redux/index.js @@ -42,6 +42,7 @@ const combinedReducers = combineReducers({ const persistedReducer = persistReducer(persistConfig, combinedReducers); const composedEnhancer = composeWithDevTools(applyMiddleware(thunk)); +// TODO: change to configureStore const store = createStore(persistedReducer, composedEnhancer); const persistor = persistStore(store); |