a demonstration replicated social networking web app built with anproto wiredove.net/
social ed25519 protocols

appendChild seems to be a more logical default insert order upon first sync

+2 -1
+2 -1
render.js
··· 253 253 const scroller = document.getElementById('scroller') 254 254 const div = await render.hash(hash) 255 255 if (div) { 256 - scroller.insertBefore(div, scroller.firstChild) 256 + scroller.appendChild(div) 257 + //scroller.insertBefore(div, scroller.firstChild) 257 258 await render.blob(blob) 258 259 } 259 260 }