Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Dec 3, 2021. It is now read-only.

Commit d600b55

Browse files
committed
Fix typo fixed in instabug 7.0
1 parent 44053a5 commit d600b55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ios/RNInstabug/InstabugReactBridge.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ - (dispatch_queue_t)methodQueue {
7878

7979
RCT_EXPORT_METHOD(setPostInvocationHandler:(RCTResponseSenderBlock)callBack) {
8080
if (callBack != nil) {
81-
[Instabug setPostInvocatioHandler:^(IBGDismissType dismissType, IBGReportType reportType) {
81+
[Instabug setPostInvocationHandler:^(IBGDismissType dismissType, IBGReportType reportType) {
8282
[self sendEventWithName:@"IBGpostInvocationHandler" body:@{
8383
@"dismissType": @(dismissType),
8484
@"reportType": @(reportType)
8585
}];
8686
}];
8787
} else {
88-
[Instabug setPostInvocatioHandler:nil];
88+
[Instabug setPostInvocationHandler:nil];
8989
}
9090
}
9191

0 commit comments

Comments
 (0)