From 5ff6f75bd9d707e7670d1dda3b9f77456b914631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Tue, 21 Jul 2026 16:48:02 +0100 Subject: [PATCH] fix(ci): use new client_golang --- cmd/karma/alert_history.go | 2 +- ui/knip.json | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/cmd/karma/alert_history.go b/cmd/karma/alert_history.go index ee49cae66..cf4f6ee4d 100644 --- a/cmd/karma/alert_history.go +++ b/cmd/karma/alert_history.go @@ -341,7 +341,7 @@ func countAlerts(uri string, timeout time.Duration, transport http.RoundTripper, lv := model.LabelSet{} for k, v := range labels { - if slices.Contains(names, k) { + if slices.Contains(names, model.LabelName(k)) { lv[model.LabelName(k)] = model.LabelValue(v) } } diff --git a/ui/knip.json b/ui/knip.json index 0e4145d0b..ea928048a 100644 --- a/ui/knip.json +++ b/ui/knip.json @@ -7,16 +7,12 @@ "src/e2e/stories.tsx" ], "ignore": [ - "src/Styles/**", - "vite-env.d.ts" + "src/Styles/**" ], "ignoreDependencies": [ "bootstrap", "bootswatch", "typeface-open-sans", "prettier" - ], - "ignoreBinaries": [ - "source-map-explorer" ] }