Fix main (#7293)

Conrad Irwin created

Release Notes:

- N/A

Change summary

crates/collab_ui/src/collab_panel.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/collab_ui/src/collab_panel.rs 🔗

@@ -78,7 +78,7 @@ pub fn init(cx: &mut AppContext) {
             if let Some(channel_id) = channel_id {
                 let workspace = cx.view().clone();
                 cx.window_context().defer(move |cx| {
-                    ChannelView::open(channel_id, workspace, cx).detach_and_log_err(cx)
+                    ChannelView::open(channel_id, None, workspace, cx).detach_and_log_err(cx)
                 });
             }
         });