style: move channel tests one level upwards, avoid onmount goto

develop
Tomáš Mládek 2024-02-27 13:31:10 +01:00
parent 7e29468247
commit cfe22d204b
7 changed files with 3 additions and 11 deletions

View File

@ -1,8 +1,8 @@
<h3>Channel tests</h3>
<ul>
<li><a href="channels/stereo">Stereo</a></li>
<li><a href="channels/5.1">5.1 Surround</a></li>
<li><a href="channels/7.1">7.1 Surround</a></li>
<li><a href="channels-stereo">Stereo</a></li>
<li><a href="channels-5.1">5.1 Surround</a></li>
<li><a href="channels-7.1">7.1 Surround</a></li>
</ul>
<style>

View File

@ -1,8 +0,0 @@
<script lang="ts">
import { onMount } from 'svelte';
import { goto } from '$app/navigation';
onMount(() => {
goto('..');
});
</script>