Skip to content

Commit

Permalink
🐞 Fix: RNIDictionarySynthesizable
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Apr 16, 2023
1 parent 090f241 commit a1d3506
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a1d3506

Please sign in to comment.