[v10.3.x] Chore: Removing error object from tracking (#84505)

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:32 +01:00
committed by GitHub
co-authored by Timur Olzhabayev
parent 31d9df1e6f
commit 1aea1aad23
@@ -129,7 +129,7 @@ export function EditDataSourceView({
trackDsConfigUpdated({ item: 'success' });
appEvents.publish(new DataSourceUpdatedSuccessfully());
} catch (error) {
trackDsConfigUpdated({ item: 'fail', error });
trackDsConfigUpdated({ item: 'fail' });
return;
}