We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e839956 commit f68fb62Copy full SHA for f68fb62
apps/svelte.dev/src/routes/(authed)/playground/[id]/AppControls.svelte
@@ -10,6 +10,7 @@
10
import { untrack } from 'svelte';
11
import SecondaryNav from '$lib/components/SecondaryNav.svelte';
12
import type { File } from 'editor';
13
+ import type { Repl } from '@sveltejs/repl';
14
15
interface Props {
16
examples: Array<{ title: string; examples: any[] }>;
@@ -169,6 +170,7 @@
169
170
// because otherwise we'll read `select.value` and re-run this
171
// when we navigate, which we don't want
172
untrack(() => {
173
+ // @ts-ignore not sure why this is erroring
174
select.value = '';
175
});
176
}
0 commit comments