diff options
author | Ben Harris <ben@tilde.team> | 2023-05-30 16:34:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 13:34:14 -0700 |
commit | 09c515d273bcdcc50e35e8fb347338170863593c (patch) | |
tree | 87c09787c88794614c84f4cf9c3e82ea35d9af99 | |
parent | c8087219381c72233af7aef3bfd60fc587d479c4 (diff) | |
download | voidsky-09c515d273bcdcc50e35e8fb347338170863593c.tar.zst |
fix web links to no longer point to staging (#758)
* fix web link in README.md * missed one
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/view/com/modals/ContentFilteringSettings.tsx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md index 1782b8ee2..ead1e677d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Welcome friends! This is the codebase for the Bluesky Social app. It serves as a resource to engineers building on the [AT Protocol](https://atproto.com). -- **Web: [staging.bsky.app](https://staging.bsky.app)** +- **Web: [bsky.app](https://bsky.app)** - **iOS: [App Store](https://apps.apple.com/us/app/bluesky-social/id6444370199)** - **Android: [Play Store](https://play.google.com/store/apps/details?id=xyz.blueskyweb.app&hl=en_US&gl=US)** diff --git a/src/view/com/modals/ContentFilteringSettings.tsx b/src/view/com/modals/ContentFilteringSettings.tsx index 1256bd420..5215c9cb4 100644 --- a/src/view/com/modals/ContentFilteringSettings.tsx +++ b/src/view/com/modals/ContentFilteringSettings.tsx @@ -52,8 +52,8 @@ export const Component = observer(({}: {}) => { Adult content can only be enabled via the Web at{' '} <TextLink style={pal.link} - href="https://staging.bsky.app" - text="staging.bsky.app" + href="https://bsky.app" + text="bsky.app" /> . </Text> |