remove doubled await

This commit is contained in:
Moriz Wahl 2023-06-20 09:10:52 +02:00 committed by Ulf Gebhardt
parent ee36023e84
commit 38a8f35e1a
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -26,7 +26,7 @@ export default {
room.id = apoc.create.uuid()
RETURN room { .* }
`
const createRommTxResponse = await await transaction.run(
const createRommTxResponse = await transaction.run(
createRoomCypher,
{ userId, currentUserId }
)