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

Commit e9193a5

Browse files
committed
fix: Corrects return type.
1 parent 39a865b commit e9193a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/service/factory.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default ({ repo }: FactoryConfig) => {
7070
setIsEditing: (id: string, isEditing: boolean) => {
7171
repo.setIsEditing(id, isEditing);
7272
},
73-
setRoute: async (route: string) => {
73+
setRoute: (route: string) => {
7474
repo.setRoute(route);
7575
},
7676
setTodoCompletion: async (id: string, completed: boolean) => {

0 commit comments

Comments
 (0)