diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-14 13:03:43 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-14 13:03:43 -0500 |
commit | acf0f80de2a7a96ad8ee58dbf6aa8cb59859c9e8 (patch) | |
tree | ea84f4665976b847ea7d32190324f47c1e0b414f /src/state/index.ts | |
parent | d55780f5c333208eaac1d5240929959b131e8787 (diff) | |
download | voidsky-acf0f80de2a7a96ad8ee58dbf6aa8cb59859c9e8.tar.zst |
Rework account creation and login views
Diffstat (limited to 'src/state/index.ts')
-rw-r--r-- | src/state/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/index.ts b/src/state/index.ts index 61b85e51d..f0713efeb 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -6,7 +6,7 @@ import * as apiPolyfill from 'lib/api/api-polyfill' import * as storage from 'lib/storage' export const LOCAL_DEV_SERVICE = - Platform.OS === 'ios' ? 'http://localhost:2583' : 'http://10.0.2.2:2583' + Platform.OS === 'android' ? 'http://10.0.2.2:2583' : 'http://localhost:2583' export const STAGING_SERVICE = 'https://pds.staging.bsky.dev' export const PROD_SERVICE = 'https://bsky.social' export const DEFAULT_SERVICE = PROD_SERVICE |