diff --git a/index.php b/index.php
index a92ad70..81b6ee5 100644
--- a/index.php
+++ b/index.php
@@ -1445,13 +1445,6 @@ $projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
Joue un son lors de la réception d'un nouveau message.
-
-
-
@@ -1603,8 +1596,8 @@ async function handleSaveUserParamètres(btn) {
const formData = new FormData(form);
// Ensure switches are correctly sent as 1/0
- const dndMode = document.getElementById('dnd-switch')?.checked ? '1' : '0';
- const soundNotifications = document.getElementById('sound-switch')?.checked ? '1' : '0';
+ const dndMode = document.getElementById('dnd-mode-switch')?.checked ? '1' : '0';
+ const soundNotifications = document.getElementById('sound-notifications-switch')?.checked ? '1' : '0';
const echoCancellation = document.getElementById('echo-cancellation-switch')?.checked ? '1' : '0';
const noiseSuppression = document.getElementById('noise-suppression-switch')?.checked ? '1' : '0';