Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44053a5 commit d600b55Copy full SHA for d600b55
ios/RNInstabug/InstabugReactBridge.m
@@ -78,14 +78,14 @@ - (dispatch_queue_t)methodQueue {
78
79
RCT_EXPORT_METHOD(setPostInvocationHandler:(RCTResponseSenderBlock)callBack) {
80
if (callBack != nil) {
81
- [Instabug setPostInvocatioHandler:^(IBGDismissType dismissType, IBGReportType reportType) {
+ [Instabug setPostInvocationHandler:^(IBGDismissType dismissType, IBGReportType reportType) {
82
[self sendEventWithName:@"IBGpostInvocationHandler" body:@{
83
@"dismissType": @(dismissType),
84
@"reportType": @(reportType)
85
}];
86
87
} else {
88
- [Instabug setPostInvocatioHandler:nil];
+ [Instabug setPostInvocationHandler:nil];
89
}
90
91
0 commit comments