We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bf7d7a commit d93ea5bCopy full SHA for d93ea5b
public/script.js
@@ -613,9 +613,9 @@ function updateStatus(message, type = '') {
613
614
// Set icon based on status type
615
let icon = 'ℹ️';
616
- if (type === 'loading') icon = '⏳';
617
- else if (type === 'success') icon = '✅';
618
- else if (type === 'error') icon = '❌';
+ if (type === 'loading') icon = '';
+ else if (type === 'success') icon = '';
+ else if (type === 'error') icon = '';
619
620
popupContent.innerHTML = `
621
<div class="status-icon">${icon}</div>
0 commit comments