diff --git a/crates/project/src/debugger/session.rs b/crates/project/src/debugger/session.rs index 8a505dd6f785463b59e39b3a7845eca9ad208988..1f7a77d72c73ed53b05dd91bc2299c88077a3a43 100644 --- a/crates/project/src/debugger/session.rs +++ b/crates/project/src/debugger/session.rs @@ -2937,7 +2937,7 @@ struct LaunchBrowserInCompanionParams { #[derive(Serialize, Deserialize)] #[serde(rename_all = "camelCase")] struct KillCompanionBrowserParams { - launch_id: String, + launch_id: u64, } async fn spawn_companion( @@ -2981,7 +2981,6 @@ async fn spawn_companion( } async fn get_or_install_companion(node: NodeRuntime, cx: &mut AsyncApp) -> Result { - // FIXME publish const PACKAGE_NAME: &str = "@zed-industries/js-debug-companion-cli"; async fn install_latest_version(dir: PathBuf, node: NodeRuntime) -> Result {