Format `ReactNativeAttributePayloadFabric.js` with Prettier (#33486)
The prettier check for this file is currently failing on `main`, after #32119 was merged.
Hendrik Liebau committed
Jun 9, 2025 at 13:42 UTC
95bcf87e6b29f4efee26d0a79cbdc84776180cce
1 file changed
+3
-1
packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js
+3
-1
@@ -255,7 +255,9 @@ function diffProperties(
255
nextProp = nextProps[propKey];
256
257
if (typeof nextProp === 'function') {
258
- const attributeConfigHasProcess = typeof attributeConfig === 'object' && typeof attributeConfig.process === 'function';
258
+ const attributeConfigHasProcess =
259
+ typeof attributeConfig === 'object' &&
260
+ typeof attributeConfig.process === 'function';
261
if (!attributeConfigHasProcess) {
262
// functions are converted to booleans as markers that the associated
263
// events should be sent from native.