From 263c477db982858959fe74c34cdeffb8da2db4e9 Mon Sep 17 00:00:00 2001 From: Allen Houchins <32207388+allenhouchins@users.noreply.github.com> Date: Tue, 6 Jan 2026 00:08:06 -0600 Subject: [PATCH] Fix category key casing for "Developer tools" (#37884) Updated the allowedCategories map to use 'Developer tools' instead of 'Developer Tools' to ensure category matching is consistent with how this category is displayed in the UI. --- cmd/maintained-apps/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/maintained-apps/main.go b/cmd/maintained-apps/main.go index 30ad0a7f22..0800bed0d9 100644 --- a/cmd/maintained-apps/main.go +++ b/cmd/maintained-apps/main.go @@ -119,7 +119,7 @@ func processOutput(ctx context.Context, app *maintained_apps.FMAManifestApp) err var allowedCategories = map[string]struct{}{ "Browsers": {}, "Communication": {}, - "Developer Tools": {}, + "Developer tools": {}, "Productivity": {}, "Security": {}, "Utilities": {},