fix storyshots

This commit is contained in:
Clément DUNGLER 2020-10-15 19:17:19 +02:00
parent 200a7c2453
commit a8c4e18062
2 changed files with 2 additions and 4 deletions

View File

@ -49,7 +49,8 @@ class ErrorBoundary extends Component<{
}
}
const Wrapper = FRAMEWORK_OPTIONS.strictMode ? React.StrictMode : React.Fragment;
const isStrict = process.env.STORYBOOK_EXAMPLE_APP || FRAMEWORK_OPTIONS?.strictMode;
const Wrapper = isStrict ? React.StrictMode : React.Fragment;
export default async function renderMain({
storyFn,

View File

@ -3,6 +3,3 @@ declare module '@storybook/semver';
declare module 'global';
// todo check for correct types
declare module 'webpack/lib/RuleSet';
// will be provided by the webpack define plugin
declare const FRAMEWORK_OPTIONS;