From 13cc43de2ef16910672d61feb9bb530decdaedb1 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 20 Jul 2024 02:29:10 +0900 Subject: [PATCH] fix: add displayName on withServerSideDocument --- packages/react/lib/withSSD.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 };