diff --git a/src/app/features/room/MembersDrawer.tsx b/src/app/features/room/MembersDrawer.tsx index 0f7eb70f2..e5a320b33 100644 --- a/src/app/features/room/MembersDrawer.tsx +++ b/src/app/features/room/MembersDrawer.tsx @@ -199,7 +199,6 @@ type MembersDrawerProps = { export function MembersDrawer({ room, members }: MembersDrawerProps) { const mx = useMatrixClient(); const useAuthentication = useMediaAuthentication(); - const isEncrypted = room.hasEncryptionStateEvent(); const crossSigningActive = useCrossSigningActive(); const showEncryption = crossSigningActive; const scrollRef = useRef(null) as React.RefObject; @@ -274,26 +273,6 @@ export function MembersDrawer({ room, members }: MembersDrawerProps) { direction="Column" > - {isEncrypted && ( - - - - {crossSigningActive ? 'E2EE ยท Shield = verified identity' : 'End-to-end encrypted room'} - - - )}