We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9377e10 commit 546fe46Copy full SHA for 546fe46
packages/react-devtools-shared/src/backend/renderer.js
@@ -3280,7 +3280,7 @@ export function attach(
3280
};
3281
3282
if (enableStyleXFeatures) {
3283
- if (memoizedProps.hasOwnProperty('xstyle')) {
+ if (memoizedProps != null && memoizedProps.hasOwnProperty('xstyle')) {
3284
plugins.stylex = getStyleXData(memoizedProps.xstyle);
3285
}
3286
0 commit comments