From 369d3a5c5b2ff831ef6b45b4e42642eeef167ce6 Mon Sep 17 00:00:00 2001 From: Brian Holmes Date: Fri, 5 Apr 2024 18:38:35 -0400 Subject: [PATCH] cleanup --- .../custom-dashboard/[name]/+page.svelte | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/web-local/src/routes/(application)/custom-dashboard/[name]/+page.svelte b/web-local/src/routes/(application)/custom-dashboard/[name]/+page.svelte index 3422c247903..11f528b6f16 100644 --- a/web-local/src/routes/(application)/custom-dashboard/[name]/+page.svelte +++ b/web-local/src/routes/(application)/custom-dashboard/[name]/+page.svelte @@ -42,13 +42,9 @@ let showGrid = true; let editorWidth = 400; - let startingWidth = 400; - let startingX = 0; - let currentX = 0; let showChartEditor = false; - + let containerWidth: number; let chartEditorHeight = DEFAULT_EDITOR_HEIGHT; - let selectedChartName: string | null = null; $: customDashboardName = $page.params.name; @@ -179,10 +175,6 @@ await updateChart(new CustomEvent("update", { detail: stringified })); } - - let containerWidth: number; - - $: console.log({ dashboard }); @@ -293,6 +285,3 @@ {/if} - -