From c8996b2dd44fd0cf356166140c6393708ffe43de Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Tue, 16 Jan 2024 17:52:59 +0100 Subject: [PATCH] chore(routing): comment out tether-drop code so vite build succeeds --- public/app/core/navigation/GrafanaRoute.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/public/app/core/navigation/GrafanaRoute.tsx b/public/app/core/navigation/GrafanaRoute.tsx index 073fe2779fa..1a49e9fb762 100644 --- a/public/app/core/navigation/GrafanaRoute.tsx +++ b/public/app/core/navigation/GrafanaRoute.tsx @@ -101,7 +101,8 @@ function cleanupDOM() { } // cleanup tether-drop - for (const drop of Drop.drops) { - drop.destroy(); - } + // TODO: Vite doesn't like this. Pretty sure the lib is incompatible with Vite. + // for (const drop of Drop.drops) { + // drop.destroy(); + // } }