refactor: was a temporary measure, no longer needed

I don't think such a replacement should occur in the backend unless we
are creating our own models (not the case here). Therefore, this will be
handled on the frontend.
This commit is contained in:
Matthew Cantelon
2021-06-14 09:43:59 -07:00
committed by Alec LaLonde
parent 62376d0f9b
commit 21a266ebde

View File

@@ -11,9 +11,6 @@ const addChain = (memberAddress: string) => async (chain: string) => {
const updatedMember: Member = { ...member };
updatedMember.moloch.chain = chain;
if (!member.moloch.title)
updatedMember.moloch.title = `Unknown ${chain} DAO`;
return updatedMember;
});
};