From e0da23fa56547452b29ee6ced6a619dc67fc5dbc Mon Sep 17 00:00:00 2001 From: Nemo Date: Tue, 24 Mar 2026 15:40:30 +0800 Subject: [PATCH] fix: syntax error - wrap subscription ternary content in fragment --- app/(app)/clients/[id].tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/(app)/clients/[id].tsx b/app/(app)/clients/[id].tsx index 8c7d501..0b8a5a9 100644 --- a/app/(app)/clients/[id].tsx +++ b/app/(app)/clients/[id].tsx @@ -268,6 +268,7 @@ export default function ClientDetailScreen() { No active subscription ) : ( + <> {/* Plan type badge */} {sub.type && ( @@ -298,6 +299,7 @@ export default function ClientDetailScreen() { + )} )}