fix pricing

This commit is contained in:
rustdesk
2023-10-01 00:23:41 +08:00
parent ff261a58c6
commit 659978c170
2 changed files with 23 additions and 2 deletions

View File

@@ -835,7 +835,17 @@ window.addEventListener("load", function() {
cancelButtonText: 'No',
}).then((result) => {
if (result.isConfirmed) {
window.open(redirectUrl, '_blank');
Swal.fire({
title: 'Please Confirm',
text: "Please note that we do not offer refunds. We strongly recommend testing our free self-hosting plan before considering the purchase of our Pro plan. Are you still interested in proceeding?",
showCancelButton: true,
confirmButtonText: 'Yes',
cancelButtonText: 'No',
}).then((result) => {
if (result.isConfirmed) {
window.open(redirectUrl, '_blank');
}
});
}
});
}