Pay API - skipUserInfoPage

Hi,
Trying to disable the user information on wix Pay API
its not working for me
can someone help please?
my code:

//Client Code//
import wixPay from ‘wix-pay’;
import {createMyPayment} from ‘backend/pay’;

export function repeater1_itemReady($item, itemData, index) {
let itemId = itemData._id;
$item(‘#button71’).onClick( async () => {
let payment = await createMyPayment(itemId,{skipUserInfoPage: true });
await wixPay.startPayment(payment.id)
.then( (result) => {
if (result.status === “Successful”) {
// handle payment success
} else if (result.status === “Failed”) {
// handle payment failure
} else if (result.status === “Pending”) {
// handle payment pending
} else if (result.status === “Cancelled”) {
// handle user closing payment panel
}
} );
});
}

//Backend Code//

import wixData from ‘wix-data’;
import wixPay from ‘wix-pay-backend’;

export async function createMyPayment(productId) {
return wixData.get(“paymentdb”, productId)
.then( (product) => {
return wixPay.createPayment( {
items: [{
name: product.name,
price: product.price
}],
amount: product.price,
} );
} );
}

There are already Wix tutorials for Wix Pay API, have a look at them and see if they help you somehow.
https://support.wix.com/en/article/corvid-tutorial-using-the-corvid-pay-api-to-collect-payments-for-a-single-product
https://support.wix.com/en/article/corvid-tutorial-using-the-corvid-pay-api-to-collect-payments-for-products-in-a-database-collection

As for the user info, don’t you actually need that in the Wix Pay setup or am I thinking of the wrong page?
https://www.wix.com/corvid/reference/wix-pay-backend.html#PaymentUserInfo

Also, a previous post about similar thing.
https://www.wix.com/corvid/forum/community-discussion/wix-pay-api-help

Thanks Ninja, find my issue

@galilevinshtein What was your solution?