WHMCS does not provide a button to mark all modules recently queued as resolved yet. They just provide the Retry All button.
However, if you wish to automate this process, you may use your browser's console to run the following JavaScript:
const buttons = document.querySelectorAll('button.resolve[data-entry-id]');
for (let i = 0; i < buttons.length; i++) {
buttons[i].click();
}