diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-07-17 14:17:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-17 16:17:14 -0500 |
commit | ad15ee31f3e069ca97f2f6817f977fb9a04b3203 (patch) | |
tree | de51dfa2cf7d0e1a801f8de20919be7dbcd37840 /src/view/com/auth/SplashScreen.web.tsx | |
parent | 3bd891b01aecdd8f2c7d5d833d735cb5ba6f5cba (diff) | |
download | voidsky-ad15ee31f3e069ca97f2f6817f977fb9a04b3203.tar.zst |
[APP-773] Change waitlist explainer copy (#1021)
* Change waitlist explainer copy * Restore the waitlist modal snap point to 80% to account for smaller phones * Tune copy further
Diffstat (limited to 'src/view/com/auth/SplashScreen.web.tsx')
-rw-r--r-- | src/view/com/auth/SplashScreen.web.tsx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index bb2ac3ef8..22b328582 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -5,7 +5,6 @@ import {TextLink} from '../util/Link' import {ErrorBoundary} from 'view/com/util/ErrorBoundary' import {s, colors} from 'lib/styles' import {usePalette} from 'lib/hooks/usePalette' -import {useStores} from 'state/index' import {CenteredView} from '../util/Views' import {isMobileWeb} from 'platform/detection' @@ -17,11 +16,6 @@ export const SplashScreen = ({ onPressCreateAccount: () => void }) => { const pal = usePalette('default') - const store = useStores() - - const onPressWaitlist = React.useCallback(() => { - store.shell.openModal({name: 'waitlist'}) - }, [store]) return ( <CenteredView style={[styles.container, pal.view]}> @@ -59,21 +53,6 @@ export const SplashScreen = ({ <Text style={[pal.text, styles.btnLabel]}>Sign In</Text> </TouchableOpacity> </View> - <Text - type="xl" - style={[styles.notice, pal.textLight]} - lineHeight={1.3}> - Bluesky will launch soon.{' '} - <TouchableOpacity - onPress={onPressWaitlist} - // TODO: web accessibility - accessibilityRole="button"> - <Text type="xl" style={pal.link}> - Join the waitlist - </Text> - </TouchableOpacity>{' '} - to try the beta before it's publicly available. - </Text> </ErrorBoundary> </View> <Footer /> |