Hide warning message and update loading state in doRetry function

This commit is contained in:
Mic 2025-05-01 22:55:01 +02:00
parent eafb278eda
commit 2ff757b529

View file

@ -438,6 +438,10 @@ async function doProceed(message, customText = ''){
}
function doRetry(){
document.getElementById('mzta-model_warn').style.display = 'none';
document.getElementById('mzta-btn_retry').remove();
document.getElementById('mzta-loading').style.display = 'inline-block';
document.getElementById('mzta-curr_msg').textContent = browser.i18n.getMessage("chatgpt_win_working");
doProceed(current_message);
}