fixing quering and updating logic

This commit is contained in:
talksik
2022-05-29 08:19:44 -05:00
parent 46a9e8b967
commit dab1ddd524
2 changed files with 35 additions and 5 deletions
@@ -0,0 +1,15 @@
import React from 'react';
import Conversation from '@nirvana/core/src/models/conversation.model';
/**
* if there is a name in the conversation, then return that
* if not, then return first three names
*/
export default function ConversationLabel({ conversation }: { conversation: Conversation }) {
// if (conversation.memberIdsList?.length === 2) {
// }
return;
}