Skip to content

Commit

Permalink
Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
johngribbin committed Dec 31, 2024
1 parent 15489e2 commit 99bf741
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,13 @@
</button>
{/if}

<a href="${base}/input" class="flex flex-col items-center justify-center no-underline">
<a href={`${base}/input`} class="flex flex-col items-center justify-center no-underline">
<div class="w-8">{@html scan}</div>
<span class="text-xs font-semibold">{$translate('app.labels.scan')}</span>
</a>

<a
href="${base}/payments/receive"
href={`${base}/payments/receive`}
class="flex flex-col items-center justify-center no-underline"
>
<div class="w-8">{@html plus}</div>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/channels/ChannelRow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</script>

<a
href="${base}/channels/{channel.id}"
href={`${base}/channels/${channel.id}`}
class="w-full pb-3 pt-2.5 border-b border-neutral-400 block no-underline hover:bg-neutral-800 transition-all"
>
<div class="flex items-center justify-between gap-x-2 w-full">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/plugins/prism/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
{:else}
<p>
{$translate('app.labels.no_active_offers_found')},
<a href="${base}/offers">{$translate('app.labels.create_one')}</a>
<a href={`${base}/offers`}>{$translate('app.labels.create_one')}</a>
</p>
{/if}
{#if bindPrismError}
Expand Down

0 comments on commit 99bf741

Please sign in to comment.