From 3e45d6d0195d95dcce5365b3458d567f4e53ea20 Mon Sep 17 00:00:00 2001 From: Bernhard Owen Josephus Date: Tue, 29 Oct 2024 12:33:51 +0800 Subject: [PATCH] ignore expo const warning --- src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 177cc00c7dee..643e2146e501 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -50,6 +50,8 @@ 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 are not using expo-const, so ignore the warning. + 'No native ExponentConstants module found', ]); const fill = {flex: 1};