From 78bc7d79099987e1acf40f5a31fcac5643a4bf46 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Tue, 28 Oct 2025 07:11:17 -0700 Subject: [PATCH] Update label for "trialing" state to "Commercial Trial" in LicenseBadge --- src-web/components/LicenseBadge.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-web/components/LicenseBadge.tsx b/src-web/components/LicenseBadge.tsx index 3f1cc37a..3800a043 100644 --- a/src-web/components/LicenseBadge.tsx +++ b/src-web/components/LicenseBadge.tsx @@ -15,7 +15,7 @@ const details: Record< commercial_use: null, invalid_license: { label: 'License Error', color: 'danger' }, personal_use: { label: 'Personal Use', color: 'notice' }, - trialing: { label: 'Trialing', color: 'secondary' }, + trialing: { label: 'Commercial Trial', color: 'secondary' }, }; export function LicenseBadge() {