This commit is contained in:
Hailey
2024-06-06 21:01:49 -07:00
parent 3ebdccfce2
commit e89a3270ea
+2 -2
View File
@@ -406,9 +406,9 @@ function Footer({
color="primary" color="primary"
size="small" size="small"
onPress={onNext} onPress={onNext}
disabled={state.canNext || state.processing}> disabled={!state.canNext || state.processing}>
<ButtonText>{nextBtnText}</ButtonText> <ButtonText>{nextBtnText}</ButtonText>
<Loader size="xs" style={{color: 'white'}} /> {state.processing && <Loader size="xs" style={{color: 'white'}} />}
</Button> </Button>
</View> </View>