From 1c0f482483ce704a0725b11e778849f60525366f Mon Sep 17 00:00:00 2001 From: Wojciech Lewicki Date: Fri, 30 Aug 2024 15:47:43 +0200 Subject: [PATCH] chore: silence warning temporarly --- src/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 98b5d4afeb1d9..10f0ce6502df2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -50,6 +50,9 @@ LogBox.ignoreLogs([ // the timer is lost. Currently Expensify is using a 30 minutes interval to refresh personal details. // More details here: https://git.io/JJYeb 'Setting a timer for a long period of time', + // We silence this warning for now and will address all the places where it happens separately. + // Then we can remove this line so the problem does not occur in the future. + '[Reanimated] Tried to modify key `current`', ]); const fill = {flex: 1};