DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Redux Ecosystem Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
hard
Redux Ecosystem
A rejected case's reducer only updates status and error, never touching a `data` field. What happens to `data` after a failed request that follows a previously successful one?
A
It's automatically cleared to null by Redux Toolkit
B
It silently retains its value from the PREVIOUS successful request — Immer's structural sharing means untouched fields keep their prior value
C
The entire slice resets to initialState
D
It throws an error
Check Answer