From 38a8f35e1a541aea129b183b5fc158ac67f50f95 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Tue, 20 Jun 2023 09:10:52 +0200 Subject: [PATCH] remove doubled await --- backend/src/schema/resolvers/rooms.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/schema/resolvers/rooms.ts b/backend/src/schema/resolvers/rooms.ts index 342bbe573..005994fd5 100644 --- a/backend/src/schema/resolvers/rooms.ts +++ b/backend/src/schema/resolvers/rooms.ts @@ -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 } )