We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 258a31c commit 1dfdd63Copy full SHA for 1dfdd63
frontend/src/routes/joins/[slug]/observability/drift/+page.svelte
@@ -37,7 +37,6 @@
37
const api = new Api();
38
39
const { data }: { data: JoinData } = $props();
40
- $inspect({ data });
41
42
const sortContext = 'drift';
43
const sortKey = getSortParamKey(sortContext);
@@ -61,7 +60,6 @@
61
60
sortDirection
62
)
63
);
64
- $inspect({ driftSeriesByGroupName });
65
66
const driftMetricDomain = $derived.by(() => {
67
const scale = DRIFT_METRIC_SCALES[data.driftMetric];
@@ -88,8 +86,6 @@
88
86
let columnSummaryData: ITileSummarySeries | null = $state(null);
89
87
let columnSummaryBaselineData: ITileSummarySeries | null = $state(null);
90
91
- $inspect({ columnSummaryData, columnSummaryBaselineData });
92
-
93
async function selectSeriesPoint(seriesPoint: typeof selectedSeriesPoint) {
94
selectedSeriesPoint = seriesPoint;
95
0 commit comments