Remove old code from notes icon click handler (#3085)

Release Notes:

- Fix clicking the notes icon when people are in the channel (preview
only)
This commit is contained in:
Mikayla Maki 2023-10-04 15:15:25 -07:00 committed by GitHub
commit acffc7e7f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2107,13 +2107,7 @@ impl CollabPanel {
} }
}) })
.on_click(MouseButton::Left, move |_, this, cx| { .on_click(MouseButton::Left, move |_, this, cx| {
let participants = this.open_channel_notes(&OpenChannelNotes { channel_id }, cx);
this.channel_store.read(cx).channel_participants(channel_id);
if is_active || participants.is_empty() {
this.open_channel_notes(&OpenChannelNotes { channel_id }, cx);
} else {
this.join_channel(channel_id, cx);
};
}), }),
) )
.align_children_center() .align_children_center()