From 31b2dc4a9bfb6ffaf4227405821bde56c281753e Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 05:07:57 +0000 Subject: [PATCH] Fix noConstantCondition lint error in billing.tsx Remove debug `true ||` from conditional that was causing Biome lint error. Co-Authored-By: Claude Opus 4.5 --- apps/web/components/settings/billing.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/components/settings/billing.tsx b/apps/web/components/settings/billing.tsx index 697a33f5..07d0fdb1 100644 --- a/apps/web/components/settings/billing.tsx +++ b/apps/web/components/settings/billing.tsx @@ -994,7 +994,7 @@ export default function Billing() { - {true || hasPaidPlan ? ( + {hasPaidPlan ? (