diff --git a/plugins/example-todo-list/src/components/TodoListPage/TodoListPage.tsx b/plugins/example-todo-list/src/components/TodoListPage/TodoListPage.tsx index 6071502fdb..9185c37419 100644 --- a/plugins/example-todo-list/src/components/TodoListPage/TodoListPage.tsx +++ b/plugins/example-todo-list/src/components/TodoListPage/TodoListPage.tsx @@ -164,7 +164,7 @@ function EditModal({ onSubmit, }: { todo?: Todo; - onSubmit(todo: Todo): any; + onSubmit(t: Todo): any; onCancel(): any; }) { const title = useRef('');