From 2cd13d26b9837c88f3ce11d8025d18adb41d5f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Palkovi=C4=8D?= Date: Thu, 10 Feb 2022 13:16:49 +0100 Subject: [PATCH] Rename types field from newReactRootApi to newRootApi --- app/react/types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/react/types/index.ts b/app/react/types/index.ts index c2eb198f04cd..b758001160a4 100644 --- a/app/react/types/index.ts +++ b/app/react/types/index.ts @@ -11,6 +11,6 @@ export interface StorybookConfig extends BaseConfig { * Uses React 18's new root API (ReactDOM.createRoot) * The new root API happens to be the gateway for accessing new features of React 18 and adds out-of-the-box improvements. */ - newReactRootApi?: boolean; + newRootApi?: boolean; }; }