Skip to content

Commit

Permalink
fix(turborepo): stderr log (#8267)
Browse files Browse the repository at this point in the history
### Description

Removing a stderr log for a warning that was breaking the UI. 

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->
  • Loading branch information
NicholasLYang authored and chris-olszewski committed Jun 4, 2024
1 parent 1d00575 commit 95d9d0f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/turborepo-lib/src/run/summary/spaces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,7 @@ impl SpacesClient {
let space_id = space_id?;
let is_linked = api_auth.as_ref().map_or(false, |auth| auth.is_linked());
if !is_linked {
eprintln!(
"Error: experimentalSpaceId is enabled, but repo is not linked to API. Run `turbo \
link` or `turbo login` first"
);
// TODO: Add back spaces warning with new UI
return None;
}
let api_auth = api_auth.expect("presence of api auth was just checked");
Expand Down

0 comments on commit 95d9d0f

Please sign in to comment.