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 2d205b9 commit 7adf510Copy full SHA for 7adf510
packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js
@@ -478,7 +478,7 @@ function fastAddProperties(
478
} else {
479
continue;
480
}
481
- } else if (typeof attributeConfig.process === 'function') {
+ } else if (typeof attributeConfig === 'object' && typeof attributeConfig.process === 'function') {
482
// An atomic prop with custom processing.
483
newValue = attributeConfig.process(prop);
484
} else if (typeof prop === 'function') {
0 commit comments