nygardk / react-share

Social media share buttons and share counts for React
MIT License
2.6k stars 429 forks source link

when I share through whatsapp in IOS device , it is redirecting me on whatsapp App but also opening an extra tab which is not required, what can I do this case? #497

Open ShivamChaudhary18 opened 1 year ago

ShivamChaudhary18 commented 11 months ago

Any update on this issue ?

ShivamChaudhary18 commented 11 months ago

const shareDialog = window.open( url, '', Object.keys(config) .map(key => ${key}=${config[key]}) .join(', '), ); If we change this peach of code by this :

const shareDialog = window.open( url, Object.keys(config) .map(key => ${key}=${config[key]}) .join(', '), );

Then it will work fine