Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
fix: #196 solving issues with state adding a default case
  • Loading branch information
enriquezrene committed Apr 30, 2020
commit 4738b2105e3f062c3a244e423d3546bda422ed09
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,9 @@ export function activityManagementReducer(state: ActivityState = initialState, a
};
}

default : {
return state;
}

}
}
4 changes: 4 additions & 0 deletions src/app/modules/time-clock/store/entry.reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,9 @@ export const entryReducer = (state: EntryState = initialState, action: EntryActi
message: 'An unexpected error happened, try again later',
};
}

default : {
return state;
}
}
};