fix: give ServerSideDocumentFallback callback

This commit is contained in:
p-sw 2024-07-20 02:44:36 +09:00
parent d0af00db63
commit ad62a4ed86
2 changed files with 43 additions and 39 deletions

View File

@ -95,7 +95,8 @@ const DialogOverlay = React.forwardRef<HTMLDivElement, DialogOverlay>(
return (
<ServerSideDocumentFallback>
{ReactDOM.createPortal(
{() =>
ReactDOM.createPortal(
<div
{...otherPropsExtracted}
id={ids.dialog}
@ -118,7 +119,8 @@ const DialogOverlay = React.forwardRef<HTMLDivElement, DialogOverlay>(
</div>
</div>,
document.body,
)}
)
}
</ServerSideDocumentFallback>
);
},

View File

@ -127,7 +127,8 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
return (
<ServerSideDocumentFallback>
{createPortal(
{() =>
createPortal(
<Comp
{...restPropsExtracted}
className={drawerOverlayVariant({
@ -143,7 +144,8 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
ref={ref}
/>,
document.body,
)}
)
}
</ServerSideDocumentFallback>
);
},