[v10.4.x] Chore: Removing error object from tracking (#84506)

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 19:33:39 +02:00
committed by GitHub
co-authored by Timur Olzhabayev
parent 54d6cb7e96
commit b946bcad5b
@@ -129,7 +129,7 @@ export function EditDataSourceView({
trackDsConfigUpdated({ item: 'success' });
appEvents.publish(new DataSourceUpdatedSuccessfully());
} catch (error) {
trackDsConfigUpdated({ item: 'fail', error });
trackDsConfigUpdated({ item: 'fail' });
return;
}