refactor: remove ConnectionIndicator component from ChatWidget to streamline the chat interface and improve code clarity

This commit is contained in:
2025-12-09 01:57:20 -03:00
parent 7637cd52f1
commit 4110b12724

View File

@@ -15,7 +15,6 @@
import type { Id } from '@sgse-app/backend/convex/_generated/dataModel'; import type { Id } from '@sgse-app/backend/convex/_generated/dataModel';
import ChatList from './ChatList.svelte'; import ChatList from './ChatList.svelte';
import ChatWindow from './ChatWindow.svelte'; import ChatWindow from './ChatWindow.svelte';
import ConnectionIndicator from './ConnectionIndicator.svelte';
import { MessageSquare, Minus, Maximize2, X, Bell } from 'lucide-svelte'; import { MessageSquare, Minus, Maximize2, X, Bell } from 'lucide-svelte';
import { SvelteSet } from 'svelte/reactivity'; import { SvelteSet } from 'svelte/reactivity';
@@ -1316,7 +1315,6 @@
{/if} {/if}
<!-- Indicador de Conexão --> <!-- Indicador de Conexão -->
<ConnectionIndicator />
<!-- Popup Global de Notificação de Nova Mensagem (quando chat está fechado/minimizado) --> <!-- Popup Global de Notificação de Nova Mensagem (quando chat está fechado/minimizado) -->
{#if showGlobalNotificationPopup && globalNotificationMessage} {#if showGlobalNotificationPopup && globalNotificationMessage}