adding stuff for mic

This commit is contained in:
talksik
2022-05-29 08:46:58 -05:00
parent c3eba13154
commit 4f7d8c92c1
6 changed files with 142 additions and 104 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ export const getUserById = async (userId: string): Promise<User | undefined> =>
// get the conversations for particular user
export const getConversationsQueryLIVE = (userId: string) =>
query(db.conversations, where('memberIdsList', 'array-contains', userId));
query(db.conversations, where(`members.${userId}.isActive`, '==', true));
/**
*