diff --git a/crates/repl/src/repl_sessions_ui.rs b/crates/repl/src/repl_sessions_ui.rs index 7960eae0ed53dfa2f5520d06685d464abf6d2d26..bd097e99be8a23a2a0ae1fe1fa86196996d637c4 100644 --- a/crates/repl/src/repl_sessions_ui.rs +++ b/crates/repl/src/repl_sessions_ui.rs @@ -38,8 +38,8 @@ pub fn init(cx: &mut AppContext) { if let Some(existing) = existing { workspace.activate_item(&existing, true, true, cx); } else { - let extensions_page = ReplSessionsPage::new(cx); - workspace.add_item_to_active_pane(Box::new(extensions_page), None, true, cx) + let repl_sessions_page = ReplSessionsPage::new(cx); + workspace.add_item_to_active_pane(Box::new(repl_sessions_page), None, true, cx) } });