Skip to content

Commit

Permalink
Fix global options value print (#925)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsousaio authored Aug 16, 2023
1 parent d0a4070 commit cc7354a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default {
previousVersion: "2.3.0",
previousVersionSHA: "6602a5aca5c44d9b3bcd5c4976116b64af7ba20b",
nextVersion: "2.4.0",
nextVersionSHA: "PLAT-11650",
nextVersionSHA: "54727ce225986c9473b0c188cbd6a1ea737d43a0",
ignoreTemplatize: [
"ios/fastlane/metadata/review_information/review_demo_password.txt",
"ios/fastlane/metadata/review_information/review_demo_user.txt"
Expand Down
4 changes: 2 additions & 2 deletions dist/modules.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion modules/react-native-app-menu/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function GlobalOptions({ options }) {
return (
<View style={options.styles.text} key={key}>
<Text style={options.styles.boldText}>{key}</Text>
<Text>{val}</Text>
<Text>{JSON.stringify(val)}</Text>
</View>
);
});
Expand Down

0 comments on commit cc7354a

Please sign in to comment.