next-redux-wrapper icon indicating copy to clipboard operation
next-redux-wrapper copied to clipboard

Redux wrapper for Next.js

Results 66 next-redux-wrapper issues
Sort by recently updated
recently updated
newest added

I found in file es6/index.d.ts, at last line added declare module 'next', import { NextPageContext } from 'next' make a mistake definition to next-redux-wrapper instead of next. I have to...

bug

The current usage example does not correctly handle some cases of sagas initializing the store. If saga `A` is waiting for the result of an asynchronous operation done by saga...

# Is there any issue with my store setup? https://gist.github.com/MuttakinHasib/c3ad30fdfcc085cf5e4a447f409f17cc ### store.ts ```ts import { Action, AnyAction, CombinedState, configureStore, ThunkAction, } from "@reduxjs/toolkit"; import { createWrapper, HYDRATE } from "next-redux-wrapper";...

## Describe the bug I am trying to use "next-redux-wrapper" with "'@reduxjs/toolkit'" as i am already using extrarReducres with builder. i ended up with this partial code ``` extraReducers: (builder)...

bug

## Describe the bug A clear and concise description of what the bug is. I've forked the sandbox demo and upgraded to ``` "next": "12.0.10", "next-redux-wrapper": "7.0.5", "react": "17.0.2", "react-dom":...

bug

Typescript unhappy with the type but not sure how to adjust it. Here is my code: ``` const allReducers = { App: appReducer, ThemeSwitcher: themeSwitcherReducer, Auth: authReducer, [articleApi.reducerPath]: articleApi.reducer, };...

bug

## Describe the bug I am building an application using nextjs and using react-redux along with redux toolkit and next-redux-wrapper. Now there comes a point in my application where I...

bug

after the next redux wrapper setup I am getting this in server console 1. getProps created store with state 3. getProps after dispatches has store state 4. WrappedApp created new...

I have created a demo shop app with this module https://github.com/slava-lu/enterprise-react-2022 If you find it useful, you may add it to the Resources section or I am happy to make...

# packages versions that I am using : next-redux-wrapper : 7.0.5 next: 12.0.7 reduxjs/toolkit: 1.7.1 react-redux: 7.2.6 I try to convert the typescript example [https://github.com/kirill-konshin/next-redux-wrapper/tree/master/packages/demo-redux-toolkit](https://github.com/kirill-konshin/next-redux-wrapper/tree/master/packages/demo-redux-toolkit) to normal js in nextjs...