Using JS IPFS in the Browser

Hi, I am developing a digital wallet and I am using ipfs inside a web extension, but I have the following errors:

this is my code:

const node = await Ipfs.create()
const results = await node.add('hello manlio')
document.getElementById('demo').innerHTML = JSON.stringify(results)

How to solve these errors ? thanks

Those are connections that failed to complete. js-ipfs connects to a bunch of bootstraps, and almost always some fail to connect. It doesn’t need to succeed at all of them though, so those errors are likely fine.