Skip to content

Commit

Permalink
group members count issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
17coincooker committed Sep 16, 2023
1 parent b20f21f commit 8c2677d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions app/actions/getConversationById.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,7 @@ const getConversationById = async (conversationId: string) => {
id: conversationId,
},
include: {
users: {
where: {
id: {
not: currentUser.id,
},
},
},
users: true,
},
});

Expand Down
2 changes: 1 addition & 1 deletion notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
## ToDos

- [ ] Add green deekayy branding
- [ ] Fix group members count issue (doesn't count the group creator)
- [ ] Check getConversationById action for members count issue
- [ ] Change app name to ChitChat
- [ ] Add twitter login
- [ ] find twitter client id and secret
Expand Down

0 comments on commit 8c2677d

Please sign in to comment.