debugger: Fix wrong variant of new process modal deployed (#32168)

I think this was added back when the `Launch` variant meant what we now
call `Debug`

Release Notes:

- N/A
This commit is contained in:
Cole Miller 2025-06-05 11:51:13 -04:00 committed by GitHub
parent dda614091a
commit 32d5a2cca0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -342,7 +342,7 @@ impl DebugPanel {
window.defer(cx, move |window, cx| {
workspace
.update(cx, |workspace, cx| {
NewProcessModal::show(workspace, window, NewProcessMode::Launch, None, cx);
NewProcessModal::show(workspace, window, NewProcessMode::Debug, None, cx);
})
.ok();
});