remove doubled await

This commit is contained in:
Moriz Wahl 2023-06-20 09:10:52 +02:00
parent f86367e340
commit 66652cf74e

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 }
)