Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@

Request request = new Request.Builder()
.url(checkoutURL)
.header("email", "[email protected]")
// .header("email", "[email protected]") // Remove this line
.post(body)
.build();

Expand Down Expand Up @@ -405,6 +405,7 @@
postBody.put("cart", cart);
postBody.put("form", new JSONObject());// This line currently mocks non existent form data
postBody.put("validate_inventory", "true");
postBody.put("email", "[email protected]"); // Add this line

Check warning on line 408 in app/src/main/java/com/example/vu/android/empowerplant/MainFragment.java

View check run for this annotation

Codecov / codecov/patch

app/src/main/java/com/example/vu/android/empowerplant/MainFragment.java#L408

Added line #L408 was not covered by tests

} catch (JSONException e) {
ISpan span = Sentry.getSpan();
Expand Down