diff --git a/src/room/EncryptionLock.tsx b/src/room/EncryptionLock.tsx index 4d080085..df0bc53c 100644 --- a/src/room/EncryptionLock.tsx +++ b/src/room/EncryptionLock.tsx @@ -29,17 +29,16 @@ interface Props { export const EncryptionLock: FC = ({ encrypted }) => { const { t } = useTranslation(); const Icon = encrypted ? LockIcon : LockOffIcon; + const label = encrypted ? t("common.encrypted") : t("common.unencrypted"); return ( - +