web/DonateShareCard: hide twitter button in russia

This commit is contained in:
wukko
2024-08-09 16:06:33 +06:00
parent d1a2d768d9
commit 6bda6dab03

View File

@@ -1,6 +1,7 @@
<script lang="ts">
import { contacts } from "$lib/env";
import { device } from "$lib/device";
import locale from "$lib/i18n/locale";
import { t } from "$lib/i18n/translations";
import { openURL, copyURL, shareURL } from "$lib/download";
@@ -82,16 +83,18 @@
{$t("button.star")}
</button>
<button
id="action-button-twitter"
class="action-button"
on:click={async () => openURL(contacts.twitter)}
>
<div class="action-button-icon">
<IconBrandTwitter />
</div>
{$t("button.follow")}
</button>
{#if $locale !== "ru"}
<button
id="action-button-twitter"
class="action-button"
on:click={async () => openURL(contacts.twitter)}
>
<div class="action-button-icon">
<IconBrandTwitter />
</div>
{$t("button.follow")}
</button>
{/if}
</div>
</div>
<div