Fix Contact Modal and improve Debug Log window
This commit is contained in:
parent
5d051ae16a
commit
c369e44d8e
7 changed files with 22 additions and 15 deletions
|
@ -86,11 +86,11 @@ export const ContactModal = ({
|
|||
);
|
||||
|
||||
useEffect(() => {
|
||||
if (conversation?.id) {
|
||||
if (contact?.id) {
|
||||
// Kick off the expensive hydration of the current sharedGroupNames
|
||||
updateConversationModelSharedGroups(conversation.id);
|
||||
updateConversationModelSharedGroups(contact.id);
|
||||
}
|
||||
}, [conversation?.id, updateConversationModelSharedGroups]);
|
||||
}, [contact?.id, updateConversationModelSharedGroups]);
|
||||
|
||||
let modalNode: ReactNode;
|
||||
switch (subModalState) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue