Skip to content

Commit

Permalink
fix(ui): correct the member select filter (#3191)
Browse files Browse the repository at this point in the history
  • Loading branch information
liangfung authored Sep 24, 2024
1 parent 8ab2fce commit 194d7e2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,7 @@ function MemberSelect({
{options.map(user => (
<CommandItem
key={user.id}
onSelect={selectMember}
value={user.id}
onSelect={() => selectMember(user.id)}
>
<UserInfoView user={user} />
</CommandItem>
Expand Down

0 comments on commit 194d7e2

Please sign in to comment.