Fix: Add missing 'text' variable to EventControlRoomPage theme destructuring

This commit is contained in:
Codex Agent
2026-01-22 13:35:09 +01:00
parent 32f3696ffb
commit 3a81c0991b

View File

@@ -279,7 +279,7 @@ export default function MobileEventControlRoomPage() {
const isMember = user?.role === 'member';
const slug = slugParam ?? activeEvent?.slug ?? null;
const online = useOnlineStatus();
const { textStrong, muted, border, primary, surfaceMuted, surface } = useAdminTheme();
const { textStrong, text, muted, border, primary, surfaceMuted, surface } = useAdminTheme();
const [activeTab, setActiveTab] = React.useState<'moderation' | 'live'>('moderation');
const [moderationPhotos, setModerationPhotos] = React.useState<TenantPhoto[]>([]);