From 0b73bb6a6e3f2bab2e6ef16f6926434e9f81f8d6 Mon Sep 17 00:00:00 2001 From: Johan Haals Date: Fri, 25 Nov 2022 16:46:47 +0100 Subject: [PATCH] chore: fix eslint no-shadow error Signed-off-by: Johan Haals --- .../src/components/TodoListPage/TodoListPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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('');