From bb570b953b864c4606f4de70a566c0c19401b3ef Mon Sep 17 00:00:00 2001 From: Timo <16718859+toger5@users.noreply.github.com> Date: Tue, 13 Feb 2024 16:36:09 +0100 Subject: [PATCH] Fix: When clicking the "join call now" button twice two guests are registered. (#2173) Signed-off-by: Timo K --- src/room/RoomAuthView.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/room/RoomAuthView.tsx b/src/room/RoomAuthView.tsx index 2b17e54a..272b82e4 100644 --- a/src/room/RoomAuthView.tsx +++ b/src/room/RoomAuthView.tsx @@ -41,6 +41,8 @@ export const RoomAuthView: FC = () => { // @ts-ignore (e) => { e.preventDefault(); + setLoading(true); + const data = new FormData(e.target); const dataForDisplayName = data.get("displayName"); const displayName =