Italo Andrade
Italo Andrade
@googlebot I signed it!
I also face this behavior. However, I believe the current behavior has to be matched to any query string passed in the URL. Example: ```js mockApi.onGet('/tools').reply(200, []); ``` It should...
I used the prop `backgroundColor`, like: ```jsx signaturePadRef.current?.readSignature()} onOK={handleSignature} onBegin={() => setDisabled(false)} webStyle={signatureWebStyle} backgroundColor="rgba(0, 0, 0, 0)" // ``` Worked as expected.
@innocenzi Did you able to solve this issue? I'm getting the same issue in CI environment. The error ``` WARN Your pnpm-lock.yaml was generated by a newer version of pnpm....
Hey @hiranya911, Is this PR still need a fix?
@Robson-pds We need the tests report, can you make one more commit to run it?
I'm also facing the same issue, I spent the whole day trying to resolve this issue, and I didn't make it.
I think that I figured out a workaround, I found this issue https://github.com/fastlane/fastlane/issues/20741. And I applied the change to my `Fastfile` and worked pretty well, now I can be able...
Were you able to solve this problem? **I can solve my problem now, this way:** ```jsx ``` I put this view including the Spinner. Maybe it will work for you...
@iloveip Here is an implementation with `Antd`: ```jsx import React from 'react'; import InputMask from 'react-input-mask'; import { Input } from 'antd'; export interface InputProps { mask: string; placeholder: string;...