diff --git a/packages/desktop/src/tree/ConversationList.tsx b/packages/desktop/src/tree/ConversationList.tsx index 33473a2..7775151 100644 --- a/packages/desktop/src/tree/ConversationList.tsx +++ b/packages/desktop/src/tree/ConversationList.tsx @@ -114,6 +114,14 @@ export function ConversationList() { } > + {masterConversations[0].length === 0 && ( + + + Mark conversations as priority to hear them across the hall. + + + )} + {masterConversations[0].map((currentConversation, index) => ( Logout + + console.log('hi')} /> ); } + +function UserSettingsDialog({ open, handleClose }: { handleClose: () => void; open: boolean }) { + return ( + + + + + + + + + Media Settings + + + + + + + + Microphone + + + Your speaker selection should be done on your computer status or taskbar. Please + select distinct speaker and microphone to avoid distortion when you have bluetooth + device connected. + + + + + Video + + + + + Screen + + + + + + ); +}