Skip to content

Commit

Permalink
fix: consider api problem
Browse files Browse the repository at this point in the history
  • Loading branch information
YoanRos committed Aug 2, 2024
1 parent 0adf058 commit fa63144
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions expo/src/scenes/Infos/Transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ const Transfer = ({ navigation }) => {

const shareOptions = {
url: `file://${path}`,
type: "application/json",
title: "Données exportées",
message: "Voici vos données exportées depuis l'application Oz Ensemble",
};

try {
await Share.open(shareOptions).then(() => {
(res) => {
console.log(res);
logEvent({ category: "TRANSFER", action: "EXPORT_DATA_SUCCESS" });
Alert.alert("Vos données ont bien été sauvegardées.");
storage.set("@ExportedData", true);
Expand Down Expand Up @@ -155,6 +155,10 @@ const Transfer = ({ navigation }) => {
Alert.alert("Félicitations, vos données ont bien été importées 🥳");
logEvent({ category: "TRANSFER", action: "IMPORT_DATA_SUCCESS" });
Expo.reloadAppAsync();
} else {
Alert.alert("Félicitations, vos données ont bien été importées 🥳");
logEvent({ category: "TRANSFER", action: "IMPORT_DATA_SUCCESS", name: "PUSH_NOTIF_TOKEN_NOT_SYNC" });
Expo.reloadAppAsync();
}
});
};
Expand All @@ -176,7 +180,7 @@ const Transfer = ({ navigation }) => {
</Text>
<View className="flex flex-row bg-[#E6E4F3] space-x-1 rounded-md p-2">
<TipIcon size={15} className="" />
<Text className="text-[#4030A5] font-semibold flex-1">
<Text className="text-[#4030A5] font-semibold ">
Veuillez lire l’ensemble des instructions ci-dessous avant de démarrer la sauvegarde.
</Text>
</View>
Expand Down Expand Up @@ -232,7 +236,7 @@ const Transfer = ({ navigation }) => {
</Text>
<View className="flex flex-row bg-[#E6E4F3] rounded-md p-2">
<TipIcon size={15} className="mr-1" />
<Text className="text-[#4030A5] font-semibold flex-1">
<Text className="text-[#4030A5] font-semibold ">
Veuillez lire l’ensemble des instructions ci-dessous avant de démarrer l'importation.
</Text>
</View>
Expand Down

0 comments on commit fa63144

Please sign in to comment.