From cefcd834640b0356fb89c27228dad37cfea6b478 Mon Sep 17 00:00:00 2001 From: Johannes Klein Date: Tue, 26 Mar 2024 23:32:13 +0100 Subject: [PATCH] Comment --- src/components/Camera/ARCamera/FrameProcessorCamera.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Camera/ARCamera/FrameProcessorCamera.js b/src/components/Camera/ARCamera/FrameProcessorCamera.js index 5403451e0..9529e790f 100644 --- a/src/components/Camera/ARCamera/FrameProcessorCamera.js +++ b/src/components/Camera/ARCamera/FrameProcessorCamera.js @@ -81,8 +81,8 @@ const FrameProcessorCamera = ( { }, [onLog] ); const handleResults = Worklets.createRunInJsFn( ( result, timeTaken ) => { - // I am don't know if it is a temporary thing but as of vision-camera@3.9.1 - // and react-native-woklets-core@0.3.0 the Array in the worklet does not have all + // I don't know if it is a temporary thing but as of vision-camera@3.9.1 + // and react-native-woklets-core@0.4.0 the Array in the worklet does not have all // the methods of a normal array, so we need to convert it to a normal array here // getPredictionsForImage is fine let { predictions } = result;