From 0b106cb55929915dae1ed491e11bfaabc364c52b Mon Sep 17 00:00:00 2001 From: jenny-s51 Date: Tue, 6 Apr 2021 15:42:51 -0400 Subject: [PATCH] add logic for selecting multiple groups, API does not support this yet --- src/user/JoinGroupDialog.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/user/JoinGroupDialog.tsx b/src/user/JoinGroupDialog.tsx index 2802acd5bd..aaffe640db 100644 --- a/src/user/JoinGroupDialog.tsx +++ b/src/user/JoinGroupDialog.tsx @@ -39,6 +39,10 @@ type Group = GroupRepresentation & { checked?: boolean; }; +type Group = GroupRepresentation & { + checked?: boolean; +}; + export const JoinGroupDialog = ({ onClose, open,