fix cover generation

This commit is contained in:
Thomas Demirdjian
2025-09-04 15:33:04 +02:00
parent ce786d4750
commit dd19172804
4 changed files with 128 additions and 50 deletions
+8 -2
View File
@@ -116,11 +116,17 @@ const PhotoCover = () => {
>
<BorderGradientButton
onPress={() => navigate(Routes.ValidateCover)}
title="Non, valider la pochette"
title={
isGenerating ? "Génération en cours..." : "Valider la pochette"
}
disabled={isGenerating}
/>
<GradientButton
title="Oui choisir une image"
title={
isGenerating ? "Génération en cours..." : "Oui choisir une image"
}
onPress={() => onChooseForegroundImage()}
disabled={isGenerating}
/>
</View>
</Page>