diff --git a/packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js b/packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js index e260a5cce7..88ff3c7309 100644 --- a/packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js +++ b/packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js @@ -255,7 +255,9 @@ function diffProperties( nextProp = nextProps[propKey]; if (typeof nextProp === 'function') { - const attributeConfigHasProcess = typeof attributeConfig === 'object' && typeof attributeConfig.process === 'function'; + const attributeConfigHasProcess = + typeof attributeConfig === 'object' && + typeof attributeConfig.process === 'function'; if (!attributeConfigHasProcess) { // functions are converted to booleans as markers that the associated // events should be sent from native.