Skip to content

Commit

Permalink
Merge pull request #48830 from Expensify/cmartins-fixTimingCrash2
Browse files Browse the repository at this point in the history
[CP Staging] Fix timing crash

(cherry picked from commit 309ea34)

(CP triggered by luacmartins)
  • Loading branch information
luacmartins authored and OSBotify committed Sep 9, 2024
1 parent 4669c0b commit abffd68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/Firebase/index.native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const stopTrace: StopTrace = (customEventName) => {
return;
}

const trace = traceMap[customEventName].trace;
const trace = traceMap[customEventName]?.trace;
if (!trace) {
return;
}
Expand Down

0 comments on commit abffd68

Please sign in to comment.