From 624a9da9e5bf06f84d91b44c9050ee79b1032088 Mon Sep 17 00:00:00 2001 From: Wooferz <85282355+woooferz@users.noreply.github.com> Date: Sat, 14 May 2022 18:39:45 +1000 Subject: [PATCH 1/2] Fixed spellcheck issue --- src/components/input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/input.tsx b/src/components/input.tsx index 3a88052..9ac649f 100644 --- a/src/components/input.tsx +++ b/src/components/input.tsx @@ -98,6 +98,7 @@ export const Input = ({ autoFocus onKeyDown={onSubmit} autoComplete="off" + spellcheck="false" /> ); From ea309263807fe0ab7f2e1e057e6f2cdb8d4f83c3 Mon Sep 17 00:00:00 2001 From: Cveinnt <30604389+Cveinnt@users.noreply.github.com> Date: Sat, 14 May 2022 17:13:35 +0800 Subject: [PATCH 2/2] DOM attributes should be camelCased --- src/components/input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input.tsx b/src/components/input.tsx index 9ac649f..bf9de68 100644 --- a/src/components/input.tsx +++ b/src/components/input.tsx @@ -98,7 +98,7 @@ export const Input = ({ autoFocus onKeyDown={onSubmit} autoComplete="off" - spellcheck="false" + spellCheck="false" /> );