🩹(frontend) fix submit button in feedbacks page

Since recent changes in the Color palette, the button was totally
invisible… fixed it.
This commit is contained in:
lebaudantoine
2024-12-04 16:57:04 +01:00
committed by aleb_the_flash
parent d9a84e5f0f
commit c270299179

View File

@@ -121,7 +121,13 @@ const OpenFeedback = ({
>
{t('submit')}
</Button>
<Button invisible size="sm" fullWidth onPress={onNext}>
<Button
invisible
variant="secondary"
size="sm"
fullWidth
onPress={onNext}
>
{t('skip')}
</Button>
</VStack>