Remove log line

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2023-08-16 13:56:31 +02:00
parent 22690c4a0b
commit 54157611eb

View File

@@ -31,7 +31,6 @@ export const useInternalRoomSharedKey = (
const [e2eeEnabled] = useEnableE2EE();
const [roomSharedKey, setRoomSharedKey] = useLocalStorage(key);
console.log("LOG useRoomSharedKey return:", key, roomSharedKey);
return e2eeEnabled ? [roomSharedKey, setRoomSharedKey] : [null, null];
};