diff options
author | 2024-07-11 04:14:48 +0100 | |
---|---|---|
committer | 2024-07-11 04:14:48 +0100 | |
commit | 1d1afff8c0e7a5ee6f39a0d3888d8acd6d459cf7 (patch) | |
tree | 7267f41035be6d62c92729577aec98183e25cf39 /src/store.ts | |
parent | Merge pull request #637 from python-discord/dependabot/npm_and_yarn/sentry/re... (diff) | |
parent | Re-map slugged vote options to human form when upstreaming to form (diff) |
Merge pull request #638 from python-discord/jb3/components/vote-field
Vote component
Diffstat (limited to 'src/store.ts')
-rw-r--r-- | src/store.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/store.ts b/src/store.ts index 1b9807b..e516bba 100644 --- a/src/store.ts +++ b/src/store.ts @@ -1,9 +1,11 @@ import { combineReducers, configureStore } from "@reduxjs/toolkit"; import authorizationReducer from "./slices/authorization"; +import voteReducer from "./slices/votes"; const rootReducer = combineReducers({ - authorization: authorizationReducer + authorization: authorizationReducer, + vote: voteReducer }); export const setupStore = (preloadedState?: Partial<RootState>) => { |