From c8b1cd9dfb7edfc37fabe80aa256d12c17dce041 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Thu, 26 Feb 2026 19:48:55 -0800 Subject: [PATCH] fix: remove beta labeling from comfy cloud badges (#9184) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the BETA label from Comfy Cloud badges while keeping the `Comfy Cloud` text. This updates both paths that render Comfy Cloud badge content: - `src/extensions/core/cloudBadges.ts` (topbar extension badge path) - `src/components/topbar/CloudBadge.vue` (reusable cloud badge used in subscription UI) image Reasoning: https://comfy-organization.slack.com/archives/C08V9NDB3B4/p1771981530055409?thread_ts=1771978875.127499&cid=C08V9NDB3B4 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9184-fix-remove-beta-labeling-from-comfy-cloud-badges-3126d73d365081e993aac651993010e7) by [Unito](https://www.unito.io) --- src/components/topbar/CloudBadge.vue | 5 +---- src/extensions/core/cloudBadges.ts | 3 +-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/topbar/CloudBadge.vue b/src/components/topbar/CloudBadge.vue index d0968885fb..70f3434e3f 100644 --- a/src/components/topbar/CloudBadge.vue +++ b/src/components/topbar/CloudBadge.vue @@ -10,7 +10,6 @@ diff --git a/src/extensions/core/cloudBadges.ts b/src/extensions/core/cloudBadges.ts index 45f658717a..ecf7f0f641 100644 --- a/src/extensions/core/cloudBadges.ts +++ b/src/extensions/core/cloudBadges.ts @@ -1,7 +1,6 @@ import { computed } from 'vue' import { remoteConfig } from '@/platform/remoteConfig/remoteConfig' -import { t } from '@/i18n' import { useExtensionService } from '@/services/extensionService' import type { TopbarBadge } from '@/types/comfy' @@ -21,7 +20,7 @@ const badges = computed(() => { // Always add cloud badge last (furthest right) result.push({ - label: t('g.beta'), + icon: 'icon-[lucide--cloud]', text: 'Comfy Cloud' })