fix: give ServerSideDocumentFallback callback
This commit is contained in:
parent
d0af00db63
commit
ad62a4ed86
@ -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>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
@ -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>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user