Skip to content

Commit c1fcd1f

Browse files
Merge pull request #14 from rn-bridge/fix_ios_iconname
Fix ios icon name
2 parents 4fb5a20 + 953c5bd commit c1fcd1f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ios/RNShortcuts.mm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ - (NSDictionary *)convertShortcutParamsToDictionary:(JS::NativeShortcuts::Shortc
5151
dict[@"title"] = params.title() ?: @"";
5252
dict[@"subTitle"] = params.subTitle() ?: @"";
5353
dict[@"longLabel"] = params.longLabel() ?: @"";
54-
54+
dict[@"iconName"] = params.iconName() ?: @"";
55+
5556
return [dict copy];
5657
}
5758
#endif

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rn-bridge/react-native-shortcuts",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "React native library for android shortcuts and iOS quick actions which allow users to quickly access specific app functionalities directly from the home screen or app icon.",
55
"source": "./src/index.tsx",
66
"main": "./lib/commonjs/index.js",

0 commit comments

Comments
 (0)