You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This User data type is used in the user Redux slices (activeUsers-slice, stageUsers-slice, preservedUsers-slice) to manage the user data in the following components: ActiveUsers, StageUsers, and PreservedUsers. But this structure is used on each reducer to perform certain operations, replicating the same code over the functions.
RFE: Refactor the user slices to make the code more readable and maintainable.
The text was updated successfully, but these errors were encountered:
Currently, there are a lot of variables composing the
User
data type:This
User
data type is used in the user Redux slices (activeUsers-slice
,stageUsers-slice
,preservedUsers-slice
) to manage the user data in the following components:ActiveUsers
,StageUsers
, andPreservedUsers
. But this structure is used on each reducer to perform certain operations, replicating the same code over the functions.RFE: Refactor the user slices to make the code more readable and maintainable.
The text was updated successfully, but these errors were encountered: