added reply message to channel

This commit is contained in:
Ren Amamiya
2023-04-12 10:03:16 +07:00
parent ac5e78a6b8
commit d8d3113fb9
21 changed files with 336 additions and 70 deletions

View File

@@ -31,7 +31,7 @@ export const ActiveAccount = memo(function ActiveAccount({ user }: { user: any }
const { createPleb } = await import('@utils/bindings');
for (const tag of tags) {
const metadata: any = await fetchMetadata(tag[1], pool, relays);
const metadata: any = await fetchMetadata(tag[1]);
createPleb({
pleb_id: tag[1] + '-lume' + user.id.toString(),
pubkey: tag[1],
@@ -41,7 +41,7 @@ export const ActiveAccount = memo(function ActiveAccount({ user }: { user: any }
}).catch(console.error);
}
},
[pool, relays, user.id]
[user.id]
);
useEffect(() => {