python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
how to configure redux sagas with redux toolkit and typescript?
This is my store :
import saga from 'redux-saga';
import {all, fork} from 'redux-saga/effects';
import { configureStore, getDefaultMiddleware} from '@reduxjs/toolkit';
import { watchCommonSaga} f...
Juan Ignacio
Votes: 0
Answers: 1
Firebase - onAuthStateChanged() fires both after sign in and sign up
I need to be able to figure out why did the listener fire - was it an initial sign up or sign in?
I tried using part of the user payload that comes with the callback. I tried comparing
user.metadata.c...
Smytt
Votes: 0
Answers: 1
How to cancel api calls and close action channel in redux-saga flow?
I have a root flow that launches delayed flow startBackgroundFlow .
function* rootSaga() {
let task = null;
while(true) {
if(task) {
cancel(task);
}
const data = yield take("START&quo...

Elli Zorro
Votes: 0
Answers: 1
REDUX-TOOLKIT: not update the state simultaneously
I am working on a project with redux-toolkit. When I create my slice, state not udating simultaneouly. Here is my slice:
export const currentTabSlice = createSlice({
name: 'currentTab',
initialSta...
Ceren Keklik
Votes: 0
Answers: 0