From a1d3506122d14d759de9afc01a2c72f1894770a6 Mon Sep 17 00:00:00 2001 From: Dominic Go <18517029+dominicstop@users.noreply.github.com> Date: Sun, 16 Apr 2023 09:31:39 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20Fix:=20`RNIDictionarySynthesizab?= =?UTF-8?q?le`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Helpers+Utilities/RNIDictionarySynthesizable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/src_library/Helpers+Utilities/RNIDictionarySynthesizable.swift b/ios/src_library/Helpers+Utilities/RNIDictionarySynthesizable.swift index a0f576f8..3f8059d7 100644 --- a/ios/src_library/Helpers+Utilities/RNIDictionarySynthesizable.swift +++ b/ios/src_library/Helpers+Utilities/RNIDictionarySynthesizable.swift @@ -62,7 +62,7 @@ extension RNIDictionarySynthesizable { let parseValue: Any = { if let synthesizableDict = value as? (any RNIDictionarySynthesizable) { - return synthesizableDict.synthesizedDictionary; + return synthesizableDict.synthesizedDictionary(isJSDict: isJSDict); } else if isJSDict, let rawValue = value as? any RawRepresentable {