From 5a7258ca31b72a6e99e74b464d122b90a5378200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=81opaci=C5=84ski?= Date: Wed, 28 Aug 2024 17:44:21 +0200 Subject: [PATCH] Updates after custom logger config changes --- apps/common-app/src/examples/InvalidValueAccessExample.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/common-app/src/examples/InvalidValueAccessExample.tsx b/apps/common-app/src/examples/InvalidValueAccessExample.tsx index 6b17256bb49..ff9c5dad966 100644 --- a/apps/common-app/src/examples/InvalidValueAccessExample.tsx +++ b/apps/common-app/src/examples/InvalidValueAccessExample.tsx @@ -2,12 +2,15 @@ import { Text, StyleSheet, View, Button } from 'react-native'; import React, { useEffect } from 'react'; import Animated, { + configureReanimatedLogger, useAnimatedStyle, useSharedValue, withTiming, } from 'react-native-reanimated'; -Animated.configureLogger({ +configureReanimatedLogger({ + // change to `false` or remove the `configureReanimatedLogger` call to + // disable the warning strict: true, });