diff --git a/public/src/components/Header/Header.js b/public/src/components/Header/Header.js index 8afb28d..84fd4ed 100644 --- a/public/src/components/Header/Header.js +++ b/public/src/components/Header/Header.js @@ -219,11 +219,13 @@ export class Header { } const notifications = await response.json(); + console.log(notifications); + console.log(notifications.length); const message = 'Вас пригласили на мероприятие.' container.innerHTML = ''; // Очищаем контейнер - if (notifications.length === 0) { + if (notifications.length == 0) { const emptyMessage = document.createElement('div'); emptyMessage.className = 'notification-item'; emptyMessage.textContent = 'Нет уведомлений';