From a33fda563700705aee716e7893d10b600f9708cc Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Mon, 6 Oct 2025 17:42:06 +0100 Subject: [PATCH] fix --- src/room/RoomPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room/RoomPage.tsx b/src/room/RoomPage.tsx index b424c511..a5260833 100644 --- a/src/room/RoomPage.tsx +++ b/src/room/RoomPage.tsx @@ -151,7 +151,7 @@ export const RoomPage: FC = () => { : E2eeType.NONE, }, }} - onEnter={(): void => knock?.()} + onEnter={async (): Promise => knock?.()} enterLabel={label} waitingForInvite={groupCallState.kind === "waitForInvite"} confineToRoom={confineToRoom}