Skip to content

Commit 12bea60

Browse files
committed
fix: ios nullability
1 parent 52a5692 commit 12bea60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ios/RNInstabug/InstabugBugReportingBridge.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
description:(NSString *)description
5656
mandatory:(BOOL)mandatory
5757
checked:(BOOL)checked
58-
actionType:(NSString * _Nullable)actionType;
58+
actionType:(id)actionType;
5959

6060
@end

ios/RNInstabug/InstabugBugReportingBridge.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ - (void) showBugReportingWithReportTypeAndOptionsHelper:(NSArray*)args {
223223
description:(NSString *)description
224224
mandatory:(BOOL)mandatory
225225
checked:(BOOL)checked
226-
actionType:(NSString * _Nullable )actionType) {
226+
actionType:(id)actionType) {
227227
IBGActionType mappedActionType = (IBGActionType)[actionType integerValue];
228228

229229
[IBGBugReporting addUserConsentWithKey:key

0 commit comments

Comments
 (0)