From 5f983f32c6d66c6b8a563ac59a24fe4955e14109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Rialland?= Date: Thu, 24 Nov 2022 16:31:10 +0100 Subject: [PATCH] Disable react strict mode for react-spectrum --- site/source/App.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/site/source/App.tsx b/site/source/App.tsx index 88efae51d..d9f7eaaca 100644 --- a/site/source/App.tsx +++ b/site/source/App.tsx @@ -61,13 +61,15 @@ export default function Root({ ) return ( - - - - - - - + // Disable react strict mode cause react-spectrum doesn't support it + // issue https://github.com/adobe/react-spectrum/issues/779 + // + + + + + + // ) }