Describe the bug
A clear and concise description of what the bug is.
for some reason the running on the web will cause this error when trying to use actions:
Uncaught ReanimatedError: [Reanimated] `ProgressTransitionRegister` is not available on non-native platform.
Additional context
Add any other context about the problem here.
add this code anywhere as a workaround this will stop the error
if (Platform.OS === "web") {
// @ts-ignore
global.ProgressTransitionRegister = {};
// @ts-ignore
global.UpdatePropsManager = {};
}