-
-
Notifications
You must be signed in to change notification settings - Fork 332
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
Property 'push' does not exist on type #684
Comments
Hey @stereodenis! I'm here to help you with any bugs or questions you have while waiting for a human maintainer. Let's tackle this together! I found a similar closed issue that might be relevant to your problem: 我完全根据文档例子使用,却报错无法使用。 [1]. The error you're encountering, "Property 'push' does not exist on type...", suggests that the array To resolve this issue, you can try casting the array to a mutable type before using the const transform: TransformsStyle["transform"] = [] as TransformsStyle["transform"] & { push: any[]["push"] }; This will allow you to use the |
@stereodenis this patch should fix this issue.
|
Hi all, we are facing the same issue. Is there any chance this fix can be fixed with a new version? We can use the patch provided above (thanks @zhenkaGo) for now. But if we understand the cause well, everybody will be facing this issue after updating to RN 0.76.0 and above. |
node_modules/react-native-reanimated-carousel/src/layouts/stack.ts:99
The text was updated successfully, but these errors were encountered: