Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
fix: Corrects return type.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryasmi committed Mar 20, 2018
1 parent 39a865b commit e9193a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default ({ repo }: FactoryConfig) => {
setIsEditing: (id: string, isEditing: boolean) => {
repo.setIsEditing(id, isEditing);
},
setRoute: async (route: string) => {
setRoute: (route: string) => {
repo.setRoute(route);
},
setTodoCompletion: async (id: string, completed: boolean) => {
Expand Down

0 comments on commit e9193a5

Please sign in to comment.