[v10.1.x] Chore: Removing error object from tracking (#84507)

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:58 +01:00
committed by GitHub
co-authored by Timur Olzhabayev
parent 56791cdc66
commit 5964db8dae
@@ -133,7 +133,7 @@ export function EditDataSourceView({
trackDsConfigUpdated({ item: 'success' });
appEvents.publish(new DataSourceUpdatedSuccessfully());
} catch (error) {
trackDsConfigUpdated({ item: 'fail', error });
trackDsConfigUpdated({ item: 'fail' });
return;
}