Skip to content

Commit

Permalink
Change If Condition For Valid Transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
0xIchigo committed Dec 4, 2023
1 parent 425f54e commit b864dc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/tx/[tx]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$: ({ raw, ...rest } = data || { raw: null });
</script>

{#if $txn == true}
{#if $transaction?.data?.signature}
<div class="content mb-4 mt-4 flex justify-between px-3">
<h1 class="text-xl font-bold">Transaction</h1>
<div
Expand Down

0 comments on commit b864dc0

Please sign in to comment.