Skip to content

Commit

Permalink
donotrecord
Browse files Browse the repository at this point in the history
  • Loading branch information
wslyvh committed Nov 30, 2024
1 parent e999973 commit 9236146
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions devcon-app/src/components/domain/app/dc7/sessions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1706,10 +1706,6 @@ export const Livestream = ({
</div>
)}

{session.doNotRecord && (
<div className="text-sm text-[#7D52F4] font-semibold p-4">This session is not recorded</div>
)}

{noStreams && (
<div className="text-sm text-[#7D52F4] font-semibold p-4">No livestream available for this session</div>
)}
Expand Down Expand Up @@ -1749,6 +1745,12 @@ export const Livestream = ({
</CollapsedSection>
)} */}

{session.doNotRecord && (
<div className="border border-solid border-[#E1E4EA] rounded-2xl text-[#7D52F4] bg-white text-sm font-semibold mt-2 p-4">
This session is not recorded
</div>
)}

{session.transcript_text && (
<div>
<StandalonePrompt
Expand Down

0 comments on commit 9236146

Please sign in to comment.