diff --git a/packages/web/components/MainTabsOrPages/ViewConvo.tsx b/packages/web/components/MainTabsOrPages/ViewConvo.tsx index bce23ec..6a749a4 100644 --- a/packages/web/components/MainTabsOrPages/ViewConvo.tsx +++ b/packages/web/components/MainTabsOrPages/ViewConvo.tsx @@ -21,6 +21,8 @@ import UserAvatar, { UserAvatarSizes } from "../UserDetails/UserAvatar"; import { useRecoilValue, useSetRecoilState } from "recoil"; import { allRelevantConversationsAtom, + audioQueueCurrentClipSelector, + isRecordingAtom, selectedConvoAtom, userConvoAssociationSelector, } from "../../recoil/main"; @@ -229,6 +231,9 @@ export default function ViewConvo(props: { conversationId: string }) { toast("Coming soon!"); }; + const isRecording = useRecoilValue(isRecordingAtom); + const audioQueueCurrentItem = useRecoilValue(audioQueueCurrentClipSelector); + return ( <> {/* - + - +