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:
Marshall Bowers 2024-07-23 15:09:40 -04:00 committed by GitHub
parent 38e3182bef
commit 5f8e799d60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)
}
});