From ef84d2c33ad00cb8f1f515ae1d68423cf3cc0653 Mon Sep 17 00:00:00 2001 From: Amudieshwar A G Date: Thu, 23 Jul 2026 22:41:45 +0530 Subject: [PATCH] fix(community): add string type annotation for tag parameter --- src/pages/Community/Community.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Community/Community.tsx b/src/pages/Community/Community.tsx index b5ad697..ddc56d8 100644 --- a/src/pages/Community/Community.tsx +++ b/src/pages/Community/Community.tsx @@ -484,7 +484,7 @@ export default function Community() { {/* Tags Inline */}
- {(q.tags || []).map((tag) => ( + {(q.tags || []).map((tag: string) => ( { e.stopPropagation(); setSearchQuery(tag); }}