idle autodock, alerts on spectator and mini pages

This commit is contained in:
legop3
2026-01-09 15:06:44 -05:00
parent 50d3977814
commit 29154c56e6
6 changed files with 163 additions and 7 deletions
+5 -1
View File
@@ -7,6 +7,7 @@ import { useSpectatorMode } from '../hooks/useSpectatorMode.js';
import { useRoomCameraSnapshots } from '../hooks/useRoomCameraSnapshots.js';
import VideoTile from '../components/VideoTile.jsx';
import ChatPanel from '../components/ChatPanel.jsx';
import AlertFeed from '../components/AlertFeed.jsx';
const ROTATE_MS = 20000;
@@ -148,7 +149,10 @@ function MiniSummaryContent() {
export default function MiniSummaryApp() {
return (
<SettingsProvider>
<MiniSummaryContent />
<>
<MiniSummaryContent />
<AlertFeed />
</>
</SettingsProvider>
);
}