Resolve upload errors.

This commit is contained in:
Patrick Fic
2025-11-04 14:18:02 -08:00
parent 9b20068186
commit 782af557f8
2 changed files with 4 additions and 1 deletions

View File

@@ -6,7 +6,7 @@
"scheme": "imex-mobile-scheme",
"userInterfaceStyle": "automatic",
"extra": {
"expover": "15",
"expover": "17",
"eas": {
"projectId": "ffe01f3a-d507-4698-82cd-da1f1cad450b"
}

View File

@@ -249,9 +249,12 @@ function* uploadToLocalMediaServer(photos, bodyshop, jobid) {
}
} catch (error) {
console.log("Error uploading documents:", error.message, JSON.stringify(error, null, 2));
throw error;
}
} catch (error) {
console.log("Uncaught error", error);
throw error;
}
}