fix(drawer): apply ServerSideDocumentFallback
This commit is contained in:
parent
985a2b5297
commit
321b47ab3f
@ -1,4 +1,10 @@
|
|||||||
import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib";
|
import {
|
||||||
|
type AsChild,
|
||||||
|
ServerSideDocumentFallback,
|
||||||
|
Slot,
|
||||||
|
type VariantProps,
|
||||||
|
vcn,
|
||||||
|
} from "@pswui-lib";
|
||||||
import React, {
|
import React, {
|
||||||
type ComponentPropsWithoutRef,
|
type ComponentPropsWithoutRef,
|
||||||
type TouchEvent as ReactTouchEvent,
|
type TouchEvent as ReactTouchEvent,
|
||||||
@ -119,7 +125,9 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
|
|||||||
: 1
|
: 1
|
||||||
})`;
|
})`;
|
||||||
|
|
||||||
return createPortal(
|
return (
|
||||||
|
<ServerSideDocumentFallback>
|
||||||
|
{createPortal(
|
||||||
<Comp
|
<Comp
|
||||||
{...restPropsExtracted}
|
{...restPropsExtracted}
|
||||||
className={drawerOverlayVariant({
|
className={drawerOverlayVariant({
|
||||||
@ -135,6 +143,8 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
|
|||||||
ref={ref}
|
ref={ref}
|
||||||
/>,
|
/>,
|
||||||
document.body,
|
document.body,
|
||||||
|
)}
|
||||||
|
</ServerSideDocumentFallback>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user