From 049411a84fdac7b48265612972d1a7006ace1c84 Mon Sep 17 00:00:00 2001 From: jonaro00 <54029719+jonaro00@users.noreply.github.com> Date: Thu, 15 Aug 2024 12:32:24 +0200 Subject: [PATCH] chore: updated beta api url (#1857) --- common/src/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/constants.rs b/common/src/constants.rs index 80bca396a..bc777aa5c 100644 --- a/common/src/constants.rs +++ b/common/src/constants.rs @@ -8,7 +8,7 @@ pub const STORAGE_DIRNAME: &str = ".shuttle-storage"; // URLs pub const API_URL_LOCAL: &str = "http://localhost:8001"; pub const API_URL_PRODUCTION: &str = "https://api.shuttle.rs"; -pub const API_URL_BETA: &str = "https://api.internal.shuttle.rs"; +pub const API_URL_BETA: &str = "https://api.shuttle.dev"; #[cfg(debug_assertions)] pub const API_URL_DEFAULT: &str = API_URL_LOCAL; #[cfg(not(debug_assertions))]