Results 36 comments of Renatex

Thanks for the feedback. Maybe on Vue3 this is something that will work. I've also tried but didn't succeed. Keep u posted if any update on my side. Thanks

Thanks @mikhailxyz you were right, I was using the wrong command to build. Now the build goes good. But same problem as before on running time, once I connect using...

Thanks again. I figure the $chain initialisation data. What about the error, is anything you recon from it.

Thank again for your time. I don't really have the dependency issue. Also deployed on Vercel without problems, it may be something isolated on your side. But the error I...

I'm 100% sure, this app was deployed to Vercel without any issue. If a dependency would be missing it wouldn't be deployed ? Maybe is a sub dependency from `@gnosis.pm/safe-apps-wagmi`...

Oh ` @gnosis.pm/safe-apps-wagmi @wagmi/core` I see, sorry about that. I've updated the code, still the `invalid address` issue I'm not sure where it comes from. Thanks again!

```ts declare module 'vue3-json-viewer' { import { AllowedComponentProps, App, Component, ComponentCustomProps, VNodeProps } from 'vue'; interface JsonViewerProps { value: Record | Array | string | number | boolean; expanded: boolean;...

@GerardoLSJ thanks for the plugin. I'm experiencing the same issue you have described above. And it works on iOS simulator but unfortunately not on my device. I've tried add to...

Hard to believe that this is hanging here for almost a year. What solved for me was (Nuxt 3.3.1) Added a middleware called `router.global.ts` added to `/src/middleware/router.global.ts` router.global.ts: ```ts export...

Same issue here. Extending the `theme` colors won't work. ``` module.exports = { darkMode: 'class', content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], theme: { extend: { colors: { 'my-blue': 'rgb(var(--my-color-black) / )', }, },...