Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#67 fixed message
  • Loading branch information
daros10 committed Apr 7, 2020
commit 14e25b8f2cedc499a25ad6ef78817edef7d52c49
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export function activityManagementReducer(state: ActivityState = initialState, a
return {
...state,
isLoading: true,
message: 'Activity removed successfully!',
};
}

Expand All @@ -77,7 +76,7 @@ export function activityManagementReducer(state: ActivityState = initialState, a
return {
data: [],
isLoading: false,
message: 'Something went wrong creating activities!',
message: 'Something went wrong deleting activity!',
};
}
default:
Expand Down