search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

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

fix(subscriptions): add missing #bot-notice div

my earlier edit to insert <div id="bot-notice"> into #pubs-section was
silently no-op'd (Edit tool reverted when the surrounding markup had
been re-formatted). renderBotNotice then exploded with
"can't access property 'className', el is null" — which stopped render()
before renderPubs ever ran, leaving the toggle list empty even when
subscriptions existed. adds the element back.

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

+2 -1
+2 -1
site/subscriptions.html
··· 291 291 <div id="login-status" class="status"></div> 292 292 </section> 293 293 294 - <section id="pubs-section" class="card hidden"> 294 + <section id="pubs-section" class="hidden"> 295 + <div id="bot-notice" class="card hidden"></div> 295 296 <div id="pubs"></div> 296 297 <div id="pubs-status" class="status"></div> 297 298 </section>