fix: fix problem with ref element type

This commit is contained in:
p-sw 2024-06-14 23:51:41 +09:00
parent 395c2f8ed1
commit 89950524f4

View File

@ -349,7 +349,7 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
transitionDuration: dragState.isDragging ? "0s" : undefined,
userSelect: dragState.isDragging ? "none" : undefined,
}}
ref={(el) => {
ref={(el: HTMLDivElement | null) => {
internalRef.current = el;
if (typeof ref === "function") {
ref(el);