no complete all

This commit is contained in:
Ken
2019-01-31 11:28:14 -08:00
parent f2ca4ea884
commit 6da255c206
4 changed files with 2 additions and 4 deletions

View File

@@ -16,7 +16,6 @@ export function mapDispatchToProps(dispatch: Dispatch<TodoAction>) {
add: (label: string) => dispatch(actions.add(label)),
remove: (id: string) => dispatch(actions.remove(id)),
complete: (id: string) => dispatch(actions.complete(id)),
completeAll: () => dispatch(actions.completeAll()),
edit: (id: string, label: string) => dispatch(actions.edit(id, label)),
clear: () => dispatch(actions.clear()),
setFilter: (filter: FilterTypes) => dispatch(actions.filter(filter))