From e3d252708d2fa7445d34f9ce6035d665fd22afbb Mon Sep 17 00:00:00 2001 From: Adrian Castro <22133246+castdrian@users.noreply.github.com> Date: Wed, 20 Mar 2024 13:11:08 +0100 Subject: [PATCH] fix: ignore tamagui warning --- apps/expo/index.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/expo/index.js b/apps/expo/index.js index a561933..4092606 100644 --- a/apps/expo/index.js +++ b/apps/expo/index.js @@ -1,3 +1,10 @@ +import { LogBox } from "react-native"; + import "expo-router/entry"; import "react-native-gesture-handler"; import "@react-native-anywhere/polyfill-base64"; + +LogBox.ignoreLogs([ + /Couldn't determine the version of the native part of Reanimated/, + /Cannot update a component/, +]);