Skip to content

Commit

Permalink
Linter warnings fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ab-smith committed Sep 4, 2024
1 parent d5bacff commit 7c542c8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions frontend/src/lib/components/Chart/TreeChart.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script lang="ts">
import { onMount } from 'svelte';
import { symbol } from 'zod';
export let s_label = '';
export let width = 'w-auto';
Expand All @@ -10,7 +9,7 @@
export let name = '';
interface treeType {
name: string;
children: any[];
children: treeType[];
}
export let tree: treeType[];
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/routes/(app)/x-rays/inspect/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<script lang="ts">
import type { PageData } from './$types';
import * as m from '$paraglide/messages';
export let data: PageData;
import TreeChart from '$lib/components/Chart/TreeChart.svelte';
import TreemapChart from '$lib/components/Chart/TreemapChart.svelte';
</script>

<div class="card bg-white p-6 shadow flex flex-col space-y-4 w-screen">
Expand Down

0 comments on commit 7c542c8

Please sign in to comment.