Skip to content

Commit cf85298

Browse files
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Fran Aguilera <fran.aguilera12@gmail.com>
1 parent edcbea5 commit cf85298

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/react-native/src/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ export type IssueReport = {
3535
fields: Record<string, string>;
3636
};
3737

38-
export type CrashReportingOptions = NativeCrashReportingOptions & {
38+
export type CrashReportingOptions = Omit<
39+
NativeCrashReportingOptions,
40+
'UNSTABLE_enableIssueCallbackBridge'
41+
> & {
3942
UNSTABLE_onBeforeReportSend?: (report: IssueReport) => void;
4043
onBeforeReportSend?: (report: IssueReport) => void;
4144
};

0 commit comments

Comments
 (0)