interactive intro to open social at-me.zzstoatzz.io
25
fork

Configure Feed

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

fix: guard against null DOM elements in onboarding showStep

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+2
+2
src/view/onboarding.js
··· 140 140 const card = document.getElementById('onboardingCard'); 141 141 const field = document.getElementById('field'); 142 142 143 + if (!backdrop || !ring || !card) return; 144 + 143 145 // Remove app highlight class 144 146 field?.classList.remove('onboarding-highlight-apps'); 145 147