feat: Add UI update logic for the search button.

This commit is contained in:
void-57 2025-12-10 16:06:56 +05:30
parent ff0b3cf588
commit 7a39b3bd58

View File

@ -766,6 +766,8 @@
btn.innerHTML = '<i class="fas fa-wallet"></i> Generate';
} else if (btn.id === 'recoverBtn') {
btn.innerHTML = '<i class="fas fa-sync-alt"></i> Recover';
} else if (btn.id === 'searchBtn') {
btn.innerHTML = '<i class="fas fa-search"></i> Search';
}
}
});