Skip to content

Commit

Permalink
Move modern strict to experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
rickhanlonii committed Jan 29, 2024
1 parent 4d6c47b commit ed38c95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/react/src/__tests__/ReactStrictMode-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ describe('ReactStrictMode', () => {
'render',
'render',
'componentDidMount',
'componentWillUnmount',
'componentDidMount',
]);

log = [];
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/ReactFeatureFlags.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const disableJavaScriptURLs = false;
// Modern <StrictMode /> behaviour aligns more with what components
// components will encounter in production, especially when used With <Offscreen />.
// TODO: clean up legacy <StrictMode /> once tests pass WWW.
export const useModernStrictMode = false;
export const useModernStrictMode = __NEXT_MAJOR__;

// Not ready to break experimental yet.
// Remove IE and MsApp specific workarounds for innerHTML
Expand Down

0 comments on commit ed38c95

Please sign in to comment.