aboutsummaryrefslogtreecommitdiff
path: root/src/routes/hololive
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-01-23 02:20:50 -0800
committerFuwn <[email protected]>2026-01-23 02:20:50 -0800
commit69753f974994b49b2df059f9b5b401d14db4a8fa (patch)
tree810f5b23d3f2f97c61fdfcdf6a581d2d7d106b32 /src/routes/hololive
parentchore(prettier): Remove deprecated pluginSearchDirs option (diff)
downloaddue.moe-69753f974994b49b2df059f9b5b401d14db4a8fa.tar.xz
due.moe-69753f974994b49b2df059f9b5b401d14db4a8fa.zip
refactor: Migrate event handlers to new Svelte 5 syntax
Diffstat (limited to 'src/routes/hololive')
-rw-r--r--src/routes/hololive/[[stream]]/+page.svelte4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/hololive/[[stream]]/+page.svelte b/src/routes/hololive/[[stream]]/+page.svelte
index d5419711..15d2125c 100644
--- a/src/routes/hololive/[[stream]]/+page.svelte
+++ b/src/routes/hololive/[[stream]]/+page.svelte
@@ -66,7 +66,7 @@
{:catch}
<Message loader="ripple" slot>
{$locale().hololive.parseError}
- <a href={'#'} on:click={() => location.reload()}>Try again?</a>
+ <a href={'#'} onclick={() => location.reload()}>Try again?</a>
</Message>
{/await}
{:else}
@@ -77,6 +77,6 @@
{:catch}
<Message loader="ripple" slot>
{$locale().hololive.loadError} Please
- <a href={'#'} on:click={() => location.reload()}>try again</a> later.
+ <a href={'#'} onclick={() => location.reload()}>try again</a> later.
</Message>
{/await}