chore: updates (upgrade packages,tweak email tpl,etc)
This commit is contained in:
@@ -219,11 +219,15 @@ const Plugins = ({
|
||||
// component={StyledCombobox}
|
||||
onRenderItem={({ item }) => {
|
||||
console.log("wtf", item);
|
||||
if (!item || !item.data) return null;
|
||||
return <Contact key={item.data.uid} uid={item.data.uid} interactive={false} />;
|
||||
}}
|
||||
items={members.map((id) => {
|
||||
const data = contactData[id];
|
||||
if (!data) return null;
|
||||
if (!data) {
|
||||
// console.log("wtffe", id, contactData);
|
||||
return { key: id };
|
||||
}
|
||||
const { uid, name, ...rest } = data;
|
||||
return {
|
||||
key: uid,
|
||||
|
||||
Reference in New Issue
Block a user