-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.12.0 crashes with 'property is not configurable' #6082
Comments
Hey! 👋 The issue doesn't seem to contain a minimal reproduction. Could you provide a snack or a link to a GitHub repository under your username that reproduces the problem? |
The call stack is: TypeError: property is not configurable This error is located at: |
Seems this PR is the root cause: #5548 . |
duplicate: #6066 |
@efstathiosntonas. I didn't find any commonality in the call stack. I'm going to patch package a revert to #5548 to see if it fixes the crash. That PR looks like it was intended to improve logging / warnings. |
@efstathiosntonas I reverted the PR that broke 3.12.0. Here is the patch package. It fixed my crash. Perhaps it will fix #6066 also. patches/react-native-reanimated+3.12.0.patch |
@giantslogik thanks for the patch, it's exactly the same issue as #6066, I just didn't add the full trace. Fact is, the better logging on 3.12.0 helped me spot a small issue so reverting it is not the way to go imho, it needs to be reworked so it won't crash. |
Hey @giantslogik @efstathiosntonas, the PR owner is currently a bit unreachable, but I will bring this to his attention next week! Thanks for the patience and the patch 😄 |
worked thx |
I exhibited the same error. Apparently the cause of my error was the fact that I was doing some basic logic just within the const animatedButtonsStyle = useAnimatedStyle(() => {
const hasTags: boolean = connection?.tags && connection?.tags.filter(tag => tag.type.value === 'connection').length > 0
const start: number = hasTags ? 90 : 60
const buttonHeight: number = 56
return {
...
}
}) The hook did not like this. The main culprit was the |
Duplicate of #6066 |
Description
Upgraded to v3.12.0 . App crashes on launch with:
Steps to reproduce
Snack or a link to a repository
No snack.
Reanimated version
3.12.0
React Native version
0.73.6
Platforms
Android, iOS
JavaScript runtime
Hermes
Workflow
React Native
Architecture
Paper (Old Architecture)
Build type
Debug app & dev bundle
Device
iOS simulator
Device model
No response
Acknowledgements
Yes
The text was updated successfully, but these errors were encountered: