From 0bd0dc374a86ae5d54905fb665348831ebf8425d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Fern=C3=A1ndez?= Date: Wed, 30 Oct 2024 13:02:28 +0100 Subject: [PATCH] BrowseDashboardPage: remove `error` property from tracking event (#95599) --- public/app/features/browse-dashboards/BrowseDashboardsPage.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/public/app/features/browse-dashboards/BrowseDashboardsPage.tsx b/public/app/features/browse-dashboards/BrowseDashboardsPage.tsx index 6a8b8788798..7e8e3d4135c 100644 --- a/public/app/features/browse-dashboards/BrowseDashboardsPage.tsx +++ b/public/app/features/browse-dashboards/BrowseDashboardsPage.tsx @@ -99,7 +99,6 @@ const BrowseDashboardsPage = memo(() => { if ('error' in result) { reportInteraction('grafana_browse_dashboards_page_edit_folder_name', { status: 'failed_with_error', - error: result.error, }); throw result.error; } else {