disable by default chat encryption
This commit is contained in:
parent
19b5038359
commit
a40ab0816b
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ export function CreateChat({ defaultUserId }: CreateChatProps) {
|
||||||
const alive = useAlive();
|
const alive = useAlive();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const [encryption, setEncryption] = useState(true);
|
const [encryption, setEncryption] = useState(false);
|
||||||
const [invalidUserId, setInvalidUserId] = useState(false);
|
const [invalidUserId, setInvalidUserId] = useState(false);
|
||||||
|
|
||||||
const [createState, create] = useAsyncCallback<string, Error | MatrixError, [string, boolean]>(
|
const [createState, create] = useAsyncCallback<string, Error | MatrixError, [string, boolean]>(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue