From 296b6c646e4e2481d766eeaef37082dc9361de59 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 1 Dec 2022 15:02:56 +0100 Subject: [PATCH] :bug: Fix incorrect flag parsing on frontend features --- frontend/src/app/main/features.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/features.cljs b/frontend/src/app/main/features.cljs index d7b0f1af66..e6e3acc5b5 100644 --- a/frontend/src/app/main/features.cljs +++ b/frontend/src/app/main/features.cljs @@ -80,7 +80,7 @@ ;; Enable all features set on the configuration (->> @cf/flags - (map str) + (map name) (keep (fn [flag] (when (str/starts-with? flag "frontend-feature-") (subs flag 17))))