fix(expo): add type annotation for members forEach in channel screen
This commit is contained in:
parent
f00eec25e8
commit
f531f2437b
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ export default function ChannelScreen() {
|
|||
// Build user lookup map
|
||||
const userMap = useMemo(() => {
|
||||
const map: Record<string, TabloMember> = {};
|
||||
members?.forEach((m) => { map[m.id] = m; });
|
||||
members?.forEach((m: TabloMember) => { map[m.id] = m; });
|
||||
return map;
|
||||
}, [members]);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue