We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8944018 commit db1a531Copy full SHA for db1a531
airbyte-webapp/src/pages/connections/ConnectionTimelinePage/components/EventLineItem.tsx
@@ -3,6 +3,7 @@ import { InferType } from "yup";
3
import { Box } from "components/ui/Box";
4
5
import { ConnectionEvent } from "core/api/types/AirbyteClient";
6
+import { trackError } from "core/utils/datadog";
7
import { useExperiment } from "hooks/services/Experiment";
8
9
import { ClearEventItem } from "./ClearEventItem";
@@ -93,5 +94,6 @@ export const EventLineItem: React.FC<{ event: ConnectionEvent | InferType<typeof
93
94
);
95
}
96
97
+ trackError(new Error("Invalid connection timeline event"), { event });
98
return null;
99
};
0 commit comments