Chrome version is now also updated and supports NIP-44.
Discussion
Great I’ll check it out!
So it looks like if I approve each message one at a time clicking the "just once" button, everything works fine and decrypts each message.

But if I click the "Approve" button to allow all of them at once, it hangs.
This is the line it hangs on:
`const res = await ndk.signer.nip44Decrypt(ndkUser, event.content);`;
Will look into it.
This would be an example of the events I'm trying to pull back and have them all decrypted:
const events = await ndk.fetchEvents({ kinds: [7376], authors: [serviceUserResponse.pubkey] });
for (const whe of walletHistoryEvents) {
const res = await ndk.signer.nip44Decrypt(ndkUser, whe.content);
console.log(res);
}
