mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-22 13:19:05 +00:00
fix: minor code quality improvements - add emoji constants, fix type safety, cleanup comments
This commit is contained in:
@@ -84,7 +84,9 @@ function MeetingStatus({ roomName }: { roomName: string }) {
|
||||
|
||||
if (activeMeetings.length > 0) {
|
||||
const meeting = activeMeetings[0];
|
||||
const title = (meeting.calendar_metadata as any)?.title || "Active Meeting";
|
||||
const title = String(
|
||||
meeting.calendar_metadata?.["title"] || "Active Meeting",
|
||||
);
|
||||
return (
|
||||
<VStack gap={1} alignItems="start">
|
||||
<Badge colorScheme="green" size="sm">
|
||||
|
||||
Reference in New Issue
Block a user