mirror of
https://github.com/imputnet/cobalt.git
synced 2025-01-01 04:36:02 +00:00
web/DonateShareCard: fix unrelated buttons triggering the copy anim
This commit is contained in:
parent
e4ec468f60
commit
e7386234bc
|
@ -64,10 +64,7 @@
|
|||
<button
|
||||
id="action-button-github"
|
||||
class="action-button"
|
||||
on:click={async () => {
|
||||
openURL(contacts.github);
|
||||
copied = true;
|
||||
}}
|
||||
on:click={async () => openURL(contacts.github)}
|
||||
>
|
||||
<div class="action-button-icon">
|
||||
<IconBrandGithub />
|
||||
|
@ -78,10 +75,7 @@
|
|||
<button
|
||||
id="action-button-twitter"
|
||||
class="action-button"
|
||||
on:click={async () => {
|
||||
openURL(contacts.twitter);
|
||||
copied = true;
|
||||
}}
|
||||
on:click={async () => openURL(contacts.twitter)}
|
||||
>
|
||||
<div class="action-button-icon">
|
||||
<IconBrandTwitter />
|
||||
|
|
Loading…
Reference in a new issue