reduxjs / redux-toolkit

The official, opinionated, batteries-included toolset for efficient Redux development
https://redux-toolkit.js.org
MIT License
10.59k stars 1.14k forks source link

isSuccess value turning true while status: "pending" #4397

Open Jeekwar opened 3 months ago

Jeekwar commented 3 months ago

Why isSucces turning into true while status "pending"

I try to fetching a query using RTK method POST and I console the response like below: useEffect(() => { console.log(responseCheckPromoCode.isError, responseCheckPromoCode.isSuccess, responseCheckPromoCode.status); } ,[responseCheckPromoCode]

after running the project responseCheckPromoCode rendered 3 times like below:

image

any answer and suggestions would be appreciated, Thanks.

aryaemami59 commented 2 months ago

If you provide a minimal repro or a replay I can take a look.

Jeekwar commented 2 months ago

If you provide a minimal repro or a replay I can take a look.

i can't give the repo but if you mind maybe i can give the slice of code.