const ownerId = "contribut3.near"; const accountId = props.accountId; console.log(accountId) return ( <Widget src={`${ownerId}/widget/Vendor.Details`} props={{ accountId, onSave: (profile) => { Near.call({ contractName: "social.near", methodName: "edit_project", args: { data: { [accountId]: { profile } } }, }); }, isAdmin: props.isAdmin, }} /> );