Remove unused code
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Alessio Davoli 2023-12-12 17:03:04 +01:00
parent 4dffc731b6
commit ff2a4d2f58
2 changed files with 2 additions and 4 deletions

View file

@ -7,7 +7,6 @@
export let route: App.Route; export let route: App.Route;
const dispatch = createEventDispatcher(); const dispatch = createEventDispatcher();
let props;
let ref: HTMLDivElement; let ref: HTMLDivElement;
let component = InfoTab; let component = InfoTab;
onMount(() => { onMount(() => {
@ -40,8 +39,6 @@
}; };
</script> </script>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div id="container"> <div id="container">
<div id="tabs" on:click={activeClicked}> <div id="tabs" on:click={activeClicked}>
<button id="info" class="active">Info</button> <button id="info" class="active">Info</button>

View file

@ -2,6 +2,7 @@
import BottomAppBar from '$lib/components/BottomAppBar.svelte'; import BottomAppBar from '$lib/components/BottomAppBar.svelte';
import Toast from '$lib/components/Toast.svelte'; import Toast from '$lib/components/Toast.svelte';
import { onMount } from 'svelte'; import { onMount } from 'svelte';
import { onNavigate } from '$app/navigation';
let node: HTMLElement; let node: HTMLElement;