From 15b0ca7ab261e9566cf165458d2b3873ba378fb0 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Mon, 12 Jan 2026 09:49:13 -0600 Subject: [PATCH] fix(input): add type safety for input reference handling --- apps/dokploy/components/ui/input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/dokploy/components/ui/input.tsx b/apps/dokploy/components/ui/input.tsx index 89ecbe20a..ddeb36894 100644 --- a/apps/dokploy/components/ui/input.tsx +++ b/apps/dokploy/components/ui/input.tsx @@ -34,6 +34,7 @@ const Input = React.forwardRef( const setRefs = React.useCallback( (node: HTMLInputElement | null) => { + // @ts-ignore inputRef.current = node; if (typeof ref === "function") { ref(node);