modifiche varie

This commit is contained in:
2026-06-04 16:38:22 +02:00
parent 46784aca4c
commit 9e766c249a
7 changed files with 1011 additions and 82 deletions
@@ -1,6 +1,7 @@
import { Outlet, Navigate } from 'react-router-dom'
import { Toaster } from 'react-hot-toast'
import { Sidebar } from './Sidebar'
import { ComposeModal } from '@/components/ComposeModal/ComposeModal'
import { useAuth } from '@/hooks/useAuth'
import { useWebSocket } from '@/hooks/useWebSocket'
import { useEffect } from 'react'
@@ -59,6 +60,9 @@ export function AppLayout() {
},
}}
/>
{/* Finestra di composizione PEC flottante (stile Gmail) */}
<ComposeModal />
</div>
)
}