From f531f2437b23f476df7f14129c190711690f4c2b Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Wed, 15 Apr 2026 17:13:10 +0200 Subject: [PATCH] fix(expo): add type annotation for members forEach in channel screen --- xtablo-expo/app/(app)/channel/[cid].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtablo-expo/app/(app)/channel/[cid].tsx b/xtablo-expo/app/(app)/channel/[cid].tsx index f1197f5..c586739 100644 --- a/xtablo-expo/app/(app)/channel/[cid].tsx +++ b/xtablo-expo/app/(app)/channel/[cid].tsx @@ -97,7 +97,7 @@ export default function ChannelScreen() { // Build user lookup map const userMap = useMemo(() => { const map: Record = {}; - members?.forEach((m) => { map[m.id] = m; }); + members?.forEach((m: TabloMember) => { map[m.id] = m; }); return map; }, [members]);