diff --git a/packages/react/lib/withSSD.tsx b/packages/react/lib/withSSD.tsx index 0cc71ee..ae1e293 100644 --- a/packages/react/lib/withSSD.tsx +++ b/packages/react/lib/withSSD.tsx @@ -4,13 +4,15 @@ import { ServerSideDocumentFallback } from "./ssrFallback"; function withServerSideDocument

( Component: ComponentType

, ): ComponentType

{ - return (props) => { + const SSDocumentFallbackWrapper = (props: P) => { return ( ); }; + + return SSDocumentFallbackWrapper; } export { withServerSideDocument };