From 8f477db2923ad01b284df994449476beaff3576c Mon Sep 17 00:00:00 2001 From: James Mealy Date: Mon, 23 Sep 2024 16:36:25 +0200 Subject: [PATCH] Fix(Multichain): replay modal loses focus when typing certain letters into text input --- src/components/common/NameInput/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/common/NameInput/index.tsx b/src/components/common/NameInput/index.tsx index 09289fc8a4..f2040e5f27 100644 --- a/src/components/common/NameInput/index.tsx +++ b/src/components/common/NameInput/index.tsx @@ -27,6 +27,7 @@ const NameInput = ({ fullWidth required={required} className={inputCss.input} + onKeyDown={(e) => e.stopPropagation()} {...register(name, { maxLength: 50, required })} /> )