diff --git a/.changeset/real-plants-mix.md b/.changeset/real-plants-mix.md new file mode 100644 index 0000000000000..a0b6977d536c4 --- /dev/null +++ b/.changeset/real-plants-mix.md @@ -0,0 +1,5 @@ +--- +"@rocket.chat/meteor": patch +--- + +Fixes E2EE not rendering new navigation feature preview diff --git a/apps/meteor/client/views/room/E2EESetup/RoomE2EESetup.tsx b/apps/meteor/client/views/room/E2EESetup/RoomE2EESetup.tsx index d893213462561..c3319ac32c4be 100644 --- a/apps/meteor/client/views/room/E2EESetup/RoomE2EESetup.tsx +++ b/apps/meteor/client/views/room/E2EESetup/RoomE2EESetup.tsx @@ -1,3 +1,4 @@ +import { FeaturePreview, FeaturePreviewOff, FeaturePreviewOn } from '@rocket.chat/ui-client'; import React, { useCallback } from 'react'; import { useTranslation } from 'react-i18next'; @@ -5,6 +6,7 @@ import { e2e } from '../../../../app/e2e/client'; import { E2EEState } from '../../../../app/e2e/client/E2EEState'; import { E2ERoomState } from '../../../../app/e2e/client/E2ERoomState'; import RoomBody from '../body/RoomBody'; +import RoomBodyV2 from '../body/RoomBodyV2'; import { useRoom } from '../contexts/RoomContext'; import { useE2EERoomState } from '../hooks/useE2EERoomState'; import { useE2EEState } from '../hooks/useE2EEState'; @@ -63,7 +65,16 @@ const RoomE2EESetup = () => { ); } - return ; + return ( + + + + + + + + + ); }; export default RoomE2EESetup;