web/DonateShareCard: fix unrelated buttons triggering the copy anim
This commit is contained in:
parent
e4ec468f60
commit
e7386234bc
1 changed files with 2 additions and 8 deletions
|
@ -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