Skip to content

Commit

Permalink
Merge pull request #343 from qonversion/responseFix
Browse files Browse the repository at this point in the history
Fixed response issue
  • Loading branch information
suriksarkisyan authored Dec 17, 2024
2 parents cd1c4ae + 5b5a120 commit 19d9b00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/RNQonversion.m
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ - (void)handleResult:(NSDictionary *)result
}

if (result) {
completion(@[result]);
completion(result);
} else {
completion(@[]);
completion(@{});
}
}

Expand Down

0 comments on commit 19d9b00

Please sign in to comment.