Context
I have an application with OrbitDB using a remote IPFS daemon (actually, all running on the same machine).
I changed your code a bit such that I can connect to that local IPFS peer, because I wasn't able to
open my databases using your demoed web version.
import IpfsClient from 'ipfs-http-client'
// ...
// Start OrbitDB
export const initOrbitDB = async () => {
orbitdb = await OrbitDB.createInstance(IpfsClient('http://localhost:5001'))
return orbitdb
}
I configured CORS for my IPFS peer, such that it works without issues
Actual Behavior
After these changes I was able to open the database, and as you can see they are correctly detected.

The issue is that, even having douments stored, no entries are shown, when added programmatically in my application.

Expected Behavior
When adding documents to the OrbitDB, they should appear in the Control Center
I'm not sure that this is an issue with your useful viewer, or something I forgot to do on my apps side. In my innocent understanding, I expect an implicit replication of the data. Maybe you can help me on this.
Thanks in advance