diff --git a/zenno/src/lib/StatChart.svelte b/zenno/src/lib/StatChart.svelte index a9e277e..0c5052d 100644 --- a/zenno/src/lib/StatChart.svelte +++ b/zenno/src/lib/StatChart.svelte @@ -43,10 +43,6 @@ let height = $state(0); let expand = $state(false); - const expandIcon = $derived(expand ? '◀' : '▶'); - function clickExpand() { - expand = !expand; - } const xLabel = $derived(Stat[stat]); const xLines = $derived([xRule].flat(1)); @@ -117,10 +113,7 @@