Development | Vanilli

Results 4 comments of Development | Vanilli

In order to install to project with React version 17, you need to use command: npm install --legacy-peer-deps

Interesting. Supposedly v1.26.0 fixed the problem but for me the problem started with that version (maybe just a coincidence).

Issue solved by making the width property a number instead of string. However I had to disable type check, otherwise was getting an error that the module won't accept width...

BEFORE: ``` { if (!!resp.credential) { await signInGoogle(resp.credential); } }} onError={() => { toast.error("Failed to sign in with Google"); }} /> ``` NOW: ``` { if (!!resp.credential) { await signInGoogle(resp.credential);...