Skip to content

Commit e973f57

Browse files
committed
fix: TT-299 modified state machine to not show name and description of activities
1 parent 7ec1de2 commit e973f57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/modules/activities-management/store/activity-management.reducers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export function activityManagementReducer(state: ActivityState = initialState, a
6868
...state,
6969
isLoading: true,
7070
message: 'Set activityIdToArchive property',
71-
activityIdToEdit: action.activityId,
71+
activityIdToEdit: undefined,
7272
};
7373
}
7474

@@ -127,7 +127,7 @@ export function activityManagementReducer(state: ActivityState = initialState, a
127127
...state,
128128
isLoading: true,
129129
message: 'Set activityIdToUnarchive property',
130-
activityIdToEdit: action.payload,
130+
activityIdToEdit: undefined,
131131
};
132132
}
133133

0 commit comments

Comments
 (0)