Ethan Neff
Ethan Neff
Hello! In a perfect world, `+non_branch_link` should almost never happen. `+clicked_branch_link` is the normal path for [reading data through a deep link](https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking#read-deep-link). Are you using another plugin to deep link?...
solution: `global.d.ts` ```ts declare namespace global { function __reanimatedWorkletInit(): void; } ``` `jest.setup.ts` ```ts global.__reanimatedWorkletInit = jest.fn(); ```
yeah we are still on v13 because v14 was a nightmare to migrate
see this fix here https://github.com/oNaiPs/secrets-to-env-action/pull/274
not sure why i'm still getting this error
So I reverted the package version to get it working again. These are the dependencies I have installed: ```sh "semantic-release": "23.0.8", "@semantic-release/changelog": "6.0.3", "@semantic-release/commit-analyzer": "12.0.0", "@semantic-release/git": "10.0.1", "@semantic-release/github": "10.0.6", "@semantic-release/npm":...
confirmed adding `"conventional-changelog-conventionalcommits": "8.0.0",` resolves the issue
updated to the latest versions - still broken
force casting is the current solution around this ```ts screenOptions: { presentation: 'formSheet', sheetExpandsWhenScrolledToEdge: false, sheetCornerRadius: 16, sheetGrabberVisible: true, sheetAllowedDetents: [0.25, 0.75], } as NativeStackNavigationOptions, }, ```