diff --git a/packages/redux-store/src/store.ts b/packages/redux-store/src/store.ts index d03184d156..8304c6991f 100644 --- a/packages/redux-store/src/store.ts +++ b/packages/redux-store/src/store.ts @@ -4,12 +4,13 @@ import type { TypedUseSelectorHook } from 'react-redux' import { combineReducers, configureStore } from '@reduxjs/toolkit' import { useDispatch, useSelector } from 'react-redux' -import { agentSlice } from './slices/agent' -import { connectionsSlice } from './slices/connections/connectionsSlice' +import { credentialsSlice, proofsSlice, connectionsSlice, agentSlice } from './slices' const rootReducer = combineReducers({ agent: agentSlice.reducer, connections: connectionsSlice.reducer, + credentials: credentialsSlice.reducer, + proofs: proofsSlice.reducer, }) type RootState = ReturnType