From fb2002a0a42c81d158db412adf76f4aa785fdc53 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Wed, 12 Mar 2025 13:26:39 +0900 Subject: [PATCH] fix: fix slot type error --- src/pswui/lib/Slot.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pswui/lib/Slot.tsx b/src/pswui/lib/Slot.tsx index d97c545..6d118b3 100644 --- a/src/pswui/lib/Slot.tsx +++ b/src/pswui/lib/Slot.tsx @@ -85,7 +85,10 @@ export const Slot = React.forwardRef< return null; } return React.cloneElement(children, { - ...mergeReactProps(safeSlotProps, children.props), + ...mergeReactProps( + safeSlotProps, + children.props as Record, + ), ref: combinedRef([ ref, (children as unknown as { ref: React.Ref }).ref,