Skip to content

Instantly share code, notes, and snippets.

@mcjcloud
Created July 10, 2020 06:39
Show Gist options
  • Save mcjcloud/c4e320242c2f57b1e9762f7eeec55760 to your computer and use it in GitHub Desktop.
Save mcjcloud/c4e320242c2f57b1e9762f7eeec55760 to your computer and use it in GitHub Desktop.
Asterisk Medium Article: uncheckTodo
/**
* make a request to mark a to-do item as incomplete
*/
const uncheckTodo = (todo: TodoItem): void => {
if (!todo._id) {
return
}
dispatch(uncompleteTodo(todo._id))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment