aboutsummaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/hololive/+page.svelte8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/routes/hololive/+page.svelte b/src/routes/hololive/+page.svelte
index dca0b14a..0fa87256 100644
--- a/src/routes/hololive/+page.svelte
+++ b/src/routes/hololive/+page.svelte
@@ -142,7 +142,13 @@
<div class="stream card">
{#if $identity.id !== -2}
<div class="pin-icon">
- <a href={'#'} on:click={() => pinStream(live.streamer)}>
+ <a
+ href={'#'}
+ on:click={(e) => {
+ e.preventDefault();
+ pinStream(live.streamer);
+ }}
+ >
<Icon
icon={`pajamas:thumbtack${
pinnedStreams.includes(live.streamer) ? '-solid' : ''