File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 33// instabugDemo
44//
55// Created by Yousef Hamza on 9/29/16.
6- // Copyright © 2016 Facebook. All rights reserved.
7- //
86
97#import " InstabugReactBridge.h"
10- #import < Instabug/Instabug.h >
8+ #import " Instabug.h "
119
1210@implementation InstabugReactBridge
1311
@@ -78,16 +76,16 @@ - (dispatch_queue_t)methodQueue {
7876 }
7977}
8078
81- RCT_EXPORT_METHOD (setPostInvocatioHandler :(RCTResponseSenderBlock)callBack) {
79+ RCT_EXPORT_METHOD (setPostInvocationHandler :(RCTResponseSenderBlock)callBack) {
8280 if (callBack != nil ) {
83- [Instabug setPostInvocatioHandler : ^(IBGDismissType dismissType, IBGReportType reportType) {
81+ [Instabug setPostInvocationHandler : ^(IBGDismissType dismissType, IBGReportType reportType) {
8482 [self sendEventWithName: @" IBGpostInvocationHandler" body: @{
8583 @" dismissType" : @(dismissType),
8684 @" reportType" : @(reportType)
8785 }];
8886 }];
8987 } else {
90- [Instabug setPostInvocatioHandler :nil ];
88+ [Instabug setPostInvocationHandler :nil ];
9189 }
9290}
9391
You can’t perform that action at this time.
0 commit comments