fix(Toast/Component/Toaster): apply withServerSideDocument on Toaster

This commit is contained in:
p-sw 2024-07-12 01:47:38 +09:00
parent 508d58fa71
commit 2f9e155cbe

View File

@ -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 React, { useEffect, useId, useRef } from "react";
import ReactDOM from "react-dom"; import ReactDOM from "react-dom";
@ -145,7 +145,8 @@ interface ToasterProps
muteDuplicationWarning?: boolean; muteDuplicationWarning?: boolean;
} }
const Toaster = React.forwardRef<HTMLDivElement, ToasterProps>((props, ref) => { const Toaster = withServerSideDocument(
React.forwardRef<HTMLDivElement, ToasterProps>((props, ref) => {
const id = useId(); const id = useId();
const [variantProps, otherPropsCompressed] = const [variantProps, otherPropsCompressed] =
resolveToasterVariantProps(props); resolveToasterVariantProps(props);
@ -207,7 +208,8 @@ const Toaster = React.forwardRef<HTMLDivElement, ToasterProps>((props, ref) => {
)} )}
</> </>
); );
}); }),
);
Toaster.displayName = "Toaster"; Toaster.displayName = "Toaster";
export { Toaster }; export { Toaster };