diff --git a/site/src/components/Repl/index.svelte b/site/src/components/Repl/index.svelte index aa9e423932..7e81f662c5 100644 --- a/site/src/components/Repl/index.svelte +++ b/site/src/components/Repl/index.svelte @@ -87,9 +87,7 @@ const [, name, type] = match; const component = $components.find(c => c.name === name && c.type === type); - selected.set(component); - - output.set($selected, $compile_options); + handle_select(component); // TODO select the line/column in question },