diff --git a/src/pages/iou/request/step/IOURequestStepScan/index.native.js b/src/pages/iou/request/step/IOURequestStepScan/index.native.js index d84a2b282a1b..9e30b2809670 100644 --- a/src/pages/iou/request/step/IOURequestStepScan/index.native.js +++ b/src/pages/iou/request/step/IOURequestStepScan/index.native.js @@ -82,7 +82,12 @@ function IOURequestStepScan({ return; } - camera.current.focus(point); + camera.current.focus(point).catch((ex) => { + if (ex.message === '[unknown/unknown] Cancelled by another startFocusAndMetering()') { + return; + } + Log.warn('Error focusing camera', ex); + }); }; const tapGesture = Gesture.Tap()