Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
5

Configure Feed

Select the types of activity you want to include in your feed.

Temporary hack for home page flicker

Grace Kind (Jul 15, 2026, 6:04 PM -0500) 43f6cf11 b24e1936

+8 -1
+1 -1
package.json
··· 1 1 { 2 2 "name": "impro", 3 - "version": "0.17.166", 3 + "version": "0.17.167", 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "rm -rf \"${BUILD_DIR:-build}\" && NODE_ENV=development eleventy --serve",
+7
src/js/views/home.view.js
··· 336 336 337 337 root.addEventListener("page-restore", (e) => { 338 338 const scrollY = e.detail?.scrollY ?? 0; 339 + const page = document.querySelector(".page-visible"); 340 + page.style.opacity = "0"; 339 341 window.scrollTo(0, scrollY); 342 + requestAnimationFrame(() => { 343 + requestAnimationFrame(() => { 344 + page.style.opacity = "1"; 345 + }); 346 + }); 340 347 for (const observer of postSeenObservers.values()) { 341 348 observer.connect(); 342 349 }