Skip to content

Commit 5a94708

Browse files
committed
drive-by fix
1 parent b03b948 commit 5a94708

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/repl/src/lib/Input/RunesInfo.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
let { runes }: { runes: boolean } = $props();
66
77
const { workspace, svelteVersion } = get_repl_context();
8-
const majorVersion = Number(svelteVersion.split(".")[0]);
8+
const majorVersion = Number(svelteVersion.split('.')[0]);
99
</script>
1010

1111
<Dropdown align="right">
@@ -19,8 +19,8 @@
1919
<div class="popup">
2020
{#if Number.isInteger(majorVersion) && majorVersion < 5}
2121
<p>
22-
<a href="/blog/runes">Runes</a> are available from Svelte 5 onwards, and this playground is
23-
using Svelte {svelteVersion}.
22+
<a href="/blog/runes">Runes</a> are available from Svelte 5 onwards, and this playground
23+
is using Svelte {svelteVersion}.
2424
</p>
2525
{:else if workspace.current.name.endsWith('.svelte.js')}
2626
<p>

0 commit comments

Comments
 (0)