fix(Toast/Component/Toaster): apply withServerSideDocument on Toaster
This commit is contained in:
parent
508d58fa71
commit
2f9e155cbe
@ -1,4 +1,4 @@
|
||||
import { type VariantProps, vcn } from "@pswui-lib";
|
||||
import { type VariantProps, vcn, withServerSideDocument } from "@pswui-lib";
|
||||
import React, { useEffect, useId, useRef } from "react";
|
||||
import ReactDOM from "react-dom";
|
||||
|
||||
@ -145,7 +145,8 @@ interface ToasterProps
|
||||
muteDuplicationWarning?: boolean;
|
||||
}
|
||||
|
||||
const Toaster = React.forwardRef<HTMLDivElement, ToasterProps>((props, ref) => {
|
||||
const Toaster = withServerSideDocument(
|
||||
React.forwardRef<HTMLDivElement, ToasterProps>((props, ref) => {
|
||||
const id = useId();
|
||||
const [variantProps, otherPropsCompressed] =
|
||||
resolveToasterVariantProps(props);
|
||||
@ -207,7 +208,8 @@ const Toaster = React.forwardRef<HTMLDivElement, ToasterProps>((props, ref) => {
|
||||
)}
|
||||
</>
|
||||
);
|
||||
});
|
||||
}),
|
||||
);
|
||||
Toaster.displayName = "Toaster";
|
||||
|
||||
export { Toaster };
|
||||
|
Loading…
x
Reference in New Issue
Block a user