diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-17 18:38:16 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-17 18:38:16 -0500 |
commit | 808affc78b9f1e0ed07c8cfdc8787f6f1c84d497 (patch) | |
tree | 5ed2db763c579111382a8c19eda2196825bfe539 /src/lib/constants.ts | |
parent | 8364e1a081affa2f51efb216688650410a3122b3 (diff) | |
download | voidsky-808affc78b9f1e0ed07c8cfdc8787f6f1c84d497.tar.zst |
Switch to the off-spec goodstuff route
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r-- | src/lib/constants.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index ffc1aaed5..0cde9b014 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -161,16 +161,6 @@ export function SUGGESTED_FOLLOWS(serviceUrl: string) { } } -export function GOOD_STUFF(serviceUrl: string) { - if (serviceUrl.includes('localhost')) { - return 'alice.test' - } else if (serviceUrl.includes('staging')) { - return 'paul.staging.bsky.dev' - } else { - return 'jay.bsky.social' - } -} - export const POST_IMG_MAX_WIDTH = 2000 export const POST_IMG_MAX_HEIGHT = 2000 export const POST_IMG_MAX_SIZE = 1000000 |