Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'liby-fix/step2-waitlist-link-accessibility' into main

+10 -4
+10 -4
src/view/com/auth/create/Step2.tsx
··· 11 11 import {Policies} from './Policies' 12 12 import {ErrorMessage} from 'view/com/util/error/ErrorMessage' 13 13 import {useStores} from 'state/index' 14 + import {isWeb} from 'platform/detection' 14 15 15 16 /** STEP 2: Your account 16 17 * @field Invite code or waitlist ··· 60 61 Don't have an invite code?{' '} 61 62 <TouchableWithoutFeedback 62 63 onPress={onPressWaitlist} 63 - accessibilityRole="button" 64 - accessibilityLabel="Waitlist" 65 - accessibilityHint="Opens Bluesky waitlist form"> 66 - <Text style={pal.link}>Join the waitlist.</Text> 64 + accessibilityLabel="Join the waitlist." 65 + accessibilityHint=""> 66 + <View style={styles.touchable}> 67 + <Text style={pal.link}>Join the waitlist.</Text> 68 + </View> 67 69 </TouchableWithoutFeedback> 68 70 </Text> 69 71 ) : ( ··· 150 152 borderWidth: 1, 151 153 borderRadius: 6, 152 154 paddingVertical: 14, 155 + }, 156 + // @ts-expect-error: Suppressing error due to incomplete `ViewStyle` type definition in react-native-web, missing `cursor` prop as discussed in https://github.com/necolas/react-native-web/issues/832. 157 + touchable: { 158 + ...(isWeb && {cursor: 'pointer'}), 153 159 }, 154 160 })