Remove waiting animation again

This commit is contained in:
SillyLossy
2023-04-30 18:47:55 +03:00
parent bdfc4bcad9
commit 17403ff05b
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ async function setImageIcon() {
try {
const sendButton = document.getElementById('send_picture');
sendButton.classList.add('fa-image');
sendButton.classList.remove('fa-hourglass-half', 'fa-fade');
sendButton.classList.remove('fa-hourglass-half');
}
catch (error) {
console.log(error);
@ -28,7 +28,7 @@ async function setSpinnerIcon() {
try {
const sendButton = document.getElementById('send_picture');
sendButton.classList.remove('fa-image');
sendButton.classList.add('fa-hourglass-half', 'fa-fade');
sendButton.classList.add('fa-hourglass-half');
}
catch (error) {
console.log(error);