repl: Fix a small typo in a variable name (#15030)
This PR fixes a small typo in a variable name. Release Notes: - N/A
This commit is contained in:
parent
38e3182bef
commit
5f8e799d60
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue