mirror of
https://github.com/papra-hq/papra.git
synced 2026-05-03 19:39:29 -05:00
fix(mobile): update ActivityIndicator color to primaryForeground (#836)
This commit is contained in:
committed by
GitHub
parent
a754c68a11
commit
5250d20e26
@@ -159,7 +159,7 @@ export function LoginScreen() {
|
||||
>
|
||||
{isSubmitting
|
||||
? (
|
||||
<ActivityIndicator color="#fff" />
|
||||
<ActivityIndicator color={themeColors.primaryForeground} />
|
||||
)
|
||||
: (
|
||||
<Text style={styles.buttonText}>Sign In</Text>
|
||||
|
||||
@@ -182,7 +182,7 @@ export function SignupScreen() {
|
||||
>
|
||||
{isSubmitting
|
||||
? (
|
||||
<ActivityIndicator color="#fff" />
|
||||
<ActivityIndicator color={themeColors.primaryForeground} />
|
||||
)
|
||||
: (
|
||||
<Text style={styles.buttonText}>Sign Up</Text>
|
||||
|
||||
@@ -99,7 +99,7 @@ export function OrganizationCreateScreen() {
|
||||
>
|
||||
{createMutation.isPending
|
||||
? (
|
||||
<ActivityIndicator color="#fff" />
|
||||
<ActivityIndicator color={themeColors.primaryForeground} />
|
||||
)
|
||||
: (
|
||||
<Text style={styles.buttonText}>Create Organization</Text>
|
||||
|
||||
Reference in New Issue
Block a user