Skip to content

Commit

Permalink
fix block explorer links
Browse files Browse the repository at this point in the history
  • Loading branch information
merklejerk committed Jun 6, 2024
1 parent 8eb24eb commit a03ed3e
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@
</ul>
</li>
<li>
<a href={`${chain.blockExplorers?.default.url}/address/${CONTEST_ADDRESS}`} target="_blank">Contest contract</a>
<a href={`${chain.blockExplorers?.default.url}address/${CONTEST_ADDRESS}`} target="_blank">Contest contract</a>
<ul>
<li>
The deployed, onchain component of the contest.
1 change: 0 additions & 1 deletion src/routes/bracket/+page.svelte
Original file line number Diff line number Diff line change
@@ -89,7 +89,6 @@ import { page } from "$app/stores";
</style>


<Page title="Bracket Details">
{#if data instanceof Promise}
<div class="loading"><CatSpinner /></div>
2 changes: 1 addition & 1 deletion src/routes/player/+page.svelte
Original file line number Diff line number Diff line change
@@ -343,7 +343,7 @@
{/if}
</div>
<div class="address">
Address: <a class="address" href={`${publicClient?.chain?.blockExplorers?.default.url}/address/${playerStats.playerAddress}`} target="_blank">{playerStats.playerAddress}</a>
Address: <a class="address" href={`${publicClient?.chain?.blockExplorers?.default.url}address/${playerStats.playerAddress}`} target="_blank">{playerStats.playerAddress}</a>
</div>
<div class="is-active">
{#if playerIsActive}

0 comments on commit a03ed3e

Please sign in to comment.