Just stopping now bc PC needs to reboot.

This commit is contained in:
2025-03-11 14:40:34 -05:00
parent cfcf118275
commit 0cdfd1a0eb
9 changed files with 872 additions and 15 deletions

View File

@ -149,9 +149,13 @@ export default function ProfileAvatar({
{uploading ? (
<ActivityIndicator style={styles.uploadingIndicator} size="small" color="#007AFF" />
) : (
<ThemedText style={styles.changePhotoText}>
{disabled ? 'Avatar' : 'Change Photo'}
</ThemedText>
disabled ? (
<ThemedView />
) : (
<ThemedText style={styles.changePhotoText}>
Change Photo
</ThemedText>
)
)}
</TouchableOpacity>
);
@ -160,7 +164,6 @@ export default function ProfileAvatar({
const styles = StyleSheet.create({
avatarContainer: {
alignItems: 'center',
marginVertical: 20,
},
avatar: {
backgroundColor: '#E1E1E1',