Mark
Mark
Jumping in, I also needed this for my rails + vue app. :pray:
I found a solution to the issue above by doing the following in `log_fail.rb` but I'm unsure if this is a better way of doing it. ```rb json_result["records"] = (ActiveRecord::Base.descendants...
I rewrote the plugin to provide support for Vue 3 options and composition API. [Paperizer](https://github.com/markhermano/paperizer)
@jofftiquez I thought about rewriting whilst waiting for Vue 3 support on this project :smiley: . Thanks for the new update on this project.
While waiting for the update, a temporary fix is to create your declaration file and include it in your `tsconfig.json`. `types/vue3-recaptcha2.d.ts` ```js declare module 'vue3-recaptcha2' ``` `tsconfig.json` ```json { "compilerOptions":...
I was able to replicate this on Google Pixel 9 Pro XL. Any updates or workarounds for the meantime?
> We ended up using the following workaround: > > `const appInfo = await Promise.race([Capacitor.Plugins.App.getInfo(), Capacitor.Plugins.App.getInfo()])` > > Since the issue only occurs with the first call (at least from...
I got the same issue and I'm running the command below in Github Actions. ```cmd docker run -i -v $PWD:/e2e -w /e2e --network=host --ipc=host cypress/included:13.6.2 ````