From bfc5d7b2f0a694be9441930736904d8a4ee0e503 Mon Sep 17 00:00:00 2001 From: TimBryanDev Date: Thu, 5 Oct 2023 16:47:12 +0100 Subject: [PATCH] :label: remove null from type --- lib/BoundaryClickWatcher/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BoundaryClickWatcher/index.tsx b/lib/BoundaryClickWatcher/index.tsx index 67c6f06b6..b0ba7b02d 100644 --- a/lib/BoundaryClickWatcher/index.tsx +++ b/lib/BoundaryClickWatcher/index.tsx @@ -58,7 +58,7 @@ interface Props { isActive?: boolean; isFocussed?: boolean; BoundaryElement?: string; - tabIndex?: number | null; + tabIndex?: number; outsideClickEventValidator?: (e?: React.MouseEvent) => boolean; children: | React.ReactNode