From ce6aca5c776b76c06184cab4be9caa9059b40788 Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Tue, 13 May 2025 07:38:32 +0000 Subject: [PATCH] chore(manifest): don't show language codes next to flags --- src/utils/manifest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/manifest.ts b/src/utils/manifest.ts index 170389e..c1846ee 100644 --- a/src/utils/manifest.ts +++ b/src/utils/manifest.ts @@ -29,7 +29,7 @@ export const buildManifest = (handlers: Handler[], config: Config): ManifestWith manifest.config.push({ key: handler.id, type: 'checkbox', - title: `${handler.languages.map(language => `${flag(language)} ${language.toUpperCase()}`).join(', ')} | ${handler.label} (${handler.contentTypes.join(', ')})`, + title: `${handler.languages.map(language => flag(language)).join(' ')} | ${handler.label} (${handler.contentTypes.join(', ')})`, ...(handler.id in config && { default: 'checked' }), }); });