From 1650b0895dfa45720be67f7011a8d7031f96e2c9 Mon Sep 17 00:00:00 2001 From: Daniel Schiavini Date: Wed, 23 Oct 2024 13:05:04 +0200 Subject: [PATCH] fix: delay optional --- packages/ui/src/InputComp/InputDebounced.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/InputComp/InputDebounced.tsx b/packages/ui/src/InputComp/InputDebounced.tsx index db8e1a5c..c28858ce 100644 --- a/packages/ui/src/InputComp/InputDebounced.tsx +++ b/packages/ui/src/InputComp/InputDebounced.tsx @@ -20,7 +20,7 @@ const InputDebounced = ({ ...inputProps }: Omit & { className?: string - delay: number + delay?: number labelProps?: InputLabelProps | false value: string testId?: string