From 4ac209ca1d05beda473362ef183aebc8dce6374a Mon Sep 17 00:00:00 2001 From: Ramanpreet Nara Date: Fri, 14 Jan 2022 16:29:10 -0800 Subject: [PATCH] Fix NVC for RCTMap Summary: Changelog: [Internal] Reviewed By: mdvacca Differential Revision: D33354718 fbshipit-source-id: 76f837a552c043be75933eea018e0db8ee1ae238 --- Libraries/ReactNative/getNativeComponentAttributes.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/ReactNative/getNativeComponentAttributes.js b/Libraries/ReactNative/getNativeComponentAttributes.js index e78df14d45e..a98daa14274 100644 --- a/Libraries/ReactNative/getNativeComponentAttributes.js +++ b/Libraries/ReactNative/getNativeComponentAttributes.js @@ -164,6 +164,8 @@ function getDifferForType( // Android Types case 'Point': return pointsDiffer; + case 'EdgeInsets': + return insetsDiffer; } return null; }