Various case and text fixes. (#757)

* Various case and text fixes.

* Update some labels per requested changes.

---------

Co-authored-by: Ansh <anshnanda10@gmail.com>
This commit is contained in:
Markus Amalthea Magnuson 2023-06-13 20:35:13 +02:00 committed by GitHub
parent 37782ae60b
commit c060cd4158
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 24 additions and 24 deletions

View file

@ -43,7 +43,7 @@ export const SplashScreen = ({
accessibilityRole="button"
accessibilityLabel="Sign in"
accessibilityHint="Opens flow to sign into your existing Bluesky account">
<Text style={[pal.text, styles.btnLabel]}>Sign in</Text>
<Text style={[pal.text, styles.btnLabel]}>Sign In</Text>
</TouchableOpacity>
</View>
</ErrorBoundary>

View file

@ -56,7 +56,7 @@ export const SplashScreen = ({
onPress={onPressSignin}
// TODO: web accessibility
accessibilityRole="button">
<Text style={[pal.text, styles.btnLabel]}>Sign in</Text>
<Text style={[pal.text, styles.btnLabel]}>Sign In</Text>
</TouchableOpacity>
</View>
<Text

View file

@ -19,7 +19,7 @@ export const Step3 = observer(({model}: {model: CreateAccountModel}) => {
<TextInput
testID="handleInput"
icon="at"
placeholder="eg alice"
placeholder="e.g. alice"
value={model.handle}
editable
onChange={model.setHandle}