[mirotalksfu] - fix typo [skip-ci]

هذا الالتزام موجود في:
Miroslav Pejic
2025-07-09 22:57:12 +02:00
الأصل 03414d8a59
التزام 1d8f427218
2 ملفات معدلة مع 2 إضافات و2 حذوفات

عرض الملف

@@ -813,7 +813,7 @@ function stopMicrophoneProcessing() {
function updateVolumeIndicator(volume) {
const normalizedVolume = Math.max(0, Math.min(1, volume));
const activeBars = Math.ceil(normalizedVolume * bars.length);
const activeBars = Math.round(normalizedVolume * bars.length);
bars.forEach((bar, index) => {
bar.classList.toggle('active', index < activeBars);
});