[v10.2.x] Chore: Removing error object from tracking (#84504)

Chore: Removing error object from tracking (#84500)

Removing error object from tracking

(cherry picked from commit 6bc662e53b)

Co-authored-by: Timur Olzhabayev <timur.olzhabayev@grafana.com>
This commit is contained in:
grafana-delivery-bot[bot]
2024-03-14 18:30:40 +01:00
committed by GitHub
co-authored by Timur Olzhabayev
parent 1d7ecfb95c
commit 47941aadd6
@@ -129,7 +129,7 @@ export function EditDataSourceView({
trackDsConfigUpdated({ item: 'success' });
appEvents.publish(new DataSourceUpdatedSuccessfully());
} catch (error) {
trackDsConfigUpdated({ item: 'fail', error });
trackDsConfigUpdated({ item: 'fail' });
return;
}