You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using a <LineChart.DatetimeText /> with some basic styling and DateTimeFormatOptions, the following error appears:
console.js:123 [Reanimated] Reading from value during component render. Please ensure that you do not access the value property or use get method of a shared value while React is rendering a component.
relevant dependencies:
Using a
<LineChart.DatetimeText />
with some basic styling and DateTimeFormatOptions, the following error appears:console.js:123 [Reanimated] Reading from
value
during component render. Please ensure that you do not access thevalue
property or useget
method of a shared value while React is rendering a component.If you don't want to see this message, you can disable the
strict
mode. Refer to:https://docs.swmansion.com/react-native-reanimated/docs/debugging/logger-configuration for more details.
After a little digging, it looks to be caused by the direct read of
.value
atsrc/components/AnimatedText.tsx:54
:I'm not sure if the explicit pass of the
value
prop is needed as it's already being passed viaanimatedProps
.The text was updated successfully, but these errors were encountered: