about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOllie Hsieh <renahlee@outlook.com>2023-04-24 11:06:05 -0700
committerGitHub <noreply@github.com>2023-04-24 11:06:05 -0700
commit9d8600c21387999f8621274c553d5385be0c92c7 (patch)
tree0b8908371af6b1eb3d141728eb40b67c88881c55
parentdf8059bf9a2b5de994b6eb1b101e875ff0d19238 (diff)
parent57c87ba7cf1505a648e59ce1f138a2a75ce689e7 (diff)
downloadvoidsky-9d8600c21387999f8621274c553d5385be0c92c7.tar.zst
Merge pull request #522 from bluesky-social/ollie/staging-link
Update client staging URL
-rw-r--r--src/state/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/index.ts b/src/state/index.ts
index 4755c28f4..42687a229 100644
--- a/src/state/index.ts
+++ b/src/state/index.ts
@@ -7,7 +7,7 @@ import * as storage from 'lib/storage'
 
 export const LOCAL_DEV_SERVICE =
   Platform.OS === 'android' ? 'http://10.0.2.2:2583' : 'http://localhost:2583'
-export const STAGING_SERVICE = 'https://pds.staging.bsky.dev'
+export const STAGING_SERVICE = 'https://staging.bsky.dev'
 export const PROD_SERVICE = 'https://bsky.social'
 export const DEFAULT_SERVICE = PROD_SERVICE
 const ROOT_STATE_STORAGE_KEY = 'root'