about summary refs log tree commit diff
path: root/src/state/index.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-14 13:03:43 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-03-14 13:03:43 -0500
commitacf0f80de2a7a96ad8ee58dbf6aa8cb59859c9e8 (patch)
treeea84f4665976b847ea7d32190324f47c1e0b414f /src/state/index.ts
parentd55780f5c333208eaac1d5240929959b131e8787 (diff)
downloadvoidsky-acf0f80de2a7a96ad8ee58dbf6aa8cb59859c9e8.tar.zst
Rework account creation and login views
Diffstat (limited to 'src/state/index.ts')
-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 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