From 4cceded7bd4ef7d86d86c561898c25c5fb83a741 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 17 Jun 2023 23:57:58 -0700 Subject: [PATCH] Remove tabindex from DurationInput --- components/common/DurationInput/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/common/DurationInput/index.tsx b/components/common/DurationInput/index.tsx index 91f6cd71..42f11c1b 100644 --- a/components/common/DurationInput/index.tsx +++ b/components/common/DurationInput/index.tsx @@ -194,7 +194,6 @@ const DurationInput = React.forwardRef( onKeyDown={handleKeyDown} placeholder="mm" size={3} - tabIndex={props.tabIndex} /> : ( onKeyDown={handleKeyDown} placeholder="ss" size={2} - tabIndex={props.tabIndex ? props.tabIndex + 1 : undefined} /> )