diff --git a/public/index.html b/public/index.html
index 88bf1643c..9b01ec189 100644
--- a/public/index.html
+++ b/public/index.html
@@ -2120,7 +2120,7 @@
diff --git a/public/scripts/extensions/caption/index.js b/public/scripts/extensions/caption/index.js
index ff6b5d1db..67d3a527a 100644
--- a/public/scripts/extensions/caption/index.js
+++ b/public/scripts/extensions/caption/index.js
@@ -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);