Skip to content

Commit

Permalink
fix: CLI analytics fix (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
dprats authored Dec 9, 2024
1 parent 1b0ac9e commit cfacdc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clients/cli/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ enum Environment {
// The web socket addresses for the different environments
#[cfg(not(debug_assertions))]
mod web_socket_urls {
pub const DEV: &str = "wss://dev.orchestrator.nexus.xyz:443/";
pub const STAGING: &str = "wss://staging.orchestrator.nexus.xyz:443/";
pub const BETA: &str = "wss://beta.orchestrator.nexus.xyz:443/";
pub const DEV: &str = "wss://dev.orchestrator.nexus.xyz:443/prove";
pub const STAGING: &str = "wss://staging.orchestrator.nexus.xyz:443/prove";
pub const BETA: &str = "wss://beta.orchestrator.nexus.xyz:443/prove";
}

// the firebase APP IDS by environment
Expand Down

0 comments on commit cfacdc1

Please sign in to comment.