disable by default chat encryption

This commit is contained in:
heaven 2026-04-16 02:04:47 +03:00
parent 2b479bb7c6
commit 9fe5bf3480

View file

@ -23,7 +23,7 @@ export function CreateChat({ defaultUserId }: CreateChatProps) {
const alive = useAlive();
const navigate = useNavigate();
const [encryption, setEncryption] = useState(true);
const [encryption, setEncryption] = useState(false);
const [invalidUserId, setInvalidUserId] = useState(false);
const [createState, create] = useAsyncCallback<string, Error | MatrixError, [string, boolean]>(