Skip to content

Commit

Permalink
only show LNURL processing when LNUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
tompro committed Jan 22, 2024
1 parent 554433b commit 5afd272
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/routes/Receive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
createSignal,
Match,
onCleanup,
onMount,
Show,
Switch
} from "solid-js";
Expand Down Expand Up @@ -531,9 +530,13 @@ export function Receive() {
amountSats={amount() ? amount().toString() : "0"}
kind={flavor()}
/>
<p class="text-center text-neutral-400">
{i18n.t("receive.lnurl_withdrawal_in_progress")} ...
</p>
<Show when={lnUrlData()}>
<p class="text-center text-neutral-400">
{i18n.t("receive.lnurl_withdrawal_in_progress")}{" "}
...
</p>
</Show>

<p class="text-center text-neutral-400">
{i18n.t("receive.keep_mutiny_open")}
</p>
Expand Down

0 comments on commit 5afd272

Please sign in to comment.