Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions SparkyFitnessMobile/src/components/ReauthModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ const ReauthModal: React.FC<ReauthModalProps> = ({
onChangeText={setPassword}
secureTextEntry
autoComplete="password"
autoCapitalize="none"
/>
</View>
</>
Expand Down Expand Up @@ -469,7 +470,7 @@ const ReauthModal: React.FC<ReauthModalProps> = ({
<Icon name="fingerprint" size={20} color={accentPrimary} />
</View>
<Text className="text-base font-semibold text-text-primary">
Sign in with Passkey
{"Sign in with Passkey "}
</Text>
</View>
</Button>
Expand All @@ -480,7 +481,7 @@ const ReauthModal: React.FC<ReauthModalProps> = ({
{/* ErrorBanner's own mb-4 is the banner→button gap. */}
<ErrorBanner message={error} />
{hasEmail && (
<PrimaryButton label="Sign In" onPress={handleSignIn} loading={loading} />
<PrimaryButton label="Sign In " onPress={handleSignIn} loading={loading} />
)}
</View>
)}
Expand Down
6 changes: 3 additions & 3 deletions SparkyFitnessMobile/src/screens/AboutScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const AboutScreen: React.FC<AboutScreenProps> = () => {
onPress={() => openUrl(PROJECT_URL)}
activeOpacity={0.7}
>
<Text className="text-base font-semibold text-text-primary">Project on GitHub</Text>
<Text className="text-base font-semibold text-text-primary">Project on GitHub </Text>
<Icon name="chevron-forward" size={20} color="#999" />
</TouchableOpacity>

Expand All @@ -68,7 +68,7 @@ const AboutScreen: React.FC<AboutScreenProps> = () => {
onPress={() => openUrl(DOCUMENTATION_URL)}
activeOpacity={0.7}
>
<Text className="text-base font-semibold text-text-primary">Documentation</Text>
<Text className="text-base font-semibold text-text-primary">Documentation </Text>
<Icon name="chevron-forward" size={20} color="#999" />
</TouchableOpacity>

Expand All @@ -77,7 +77,7 @@ const AboutScreen: React.FC<AboutScreenProps> = () => {
onPress={() => openUrl(PRIVACY_POLICY_URL)}
activeOpacity={0.7}
>
<Text className="text-base font-semibold text-text-primary">Privacy Policy</Text>
<Text className="text-base font-semibold text-text-primary">Privacy Policy </Text>
<Icon name="chevron-forward" size={20} color="#999" />
</TouchableOpacity>
</View>
Expand Down
Loading