Skip to content

Commit

Permalink
fix(web-ui): fix typo (#852)
Browse files Browse the repository at this point in the history
Co-authored-by: Johan Book <{ID}+{username}@users.noreply.github.com>
  • Loading branch information
johanbook and Johan Book authored Jul 14, 2024
1 parent 40e4bcb commit 0578a7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function CreateChatPageContainer(): ReactElement {
const options = data
.map((x) => ({ id: x.profileId, label: x.name, imageUrl: x.imageUrl }))
.filter((x) => {
if (x.id !== currentProfileQuery.data.id) {
if (x.id === currentProfileQuery.data.id) {
return false;
}

Expand Down

0 comments on commit 0578a7b

Please sign in to comment.