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

View File

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