Skip to content

Commit e708dad

Browse files
add shipping country code param in subscriptions url (#181)
1 parent 04a3251 commit e708dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/OpenSign/src/routes/PlanSubscriptions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const PlanSubscriptions = () => {
2828
: "";
2929
const phone =
3030
userDetails && userDetails.phone ? "&mobile=" + userDetails.phone : "";
31-
const details = "?" + name + email + company + phone;
31+
const details = "?shipping_country_code=US&" + name + email + company + phone;
3232
useEffect(() => {
3333
if (localStorage.getItem("accesstoken")) {
3434
setIsLoader(false);

0 commit comments

Comments
 (0)