Skip to content

Commit

Permalink
Fix open command (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
Milo123459 authored Feb 3, 2025
1 parent 11605cc commit d431bad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/open.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ pub async fn command(_args: Args, _json: bool) -> Result<()> {
ensure_project_and_environment_exist(&client, &configs, &linked_project).await?;

::open::that(format!(
"https://{hostname}/project/{}",
linked_project.project
"https://{hostname}/project/{}?environmentId={}",
linked_project.project, linked_project.environment
))?;
Ok(())
}

0 comments on commit d431bad

Please sign in to comment.