Full document, spreadsheet, slideshow, and diagram tooling
0
fork

Configure Feed

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

Merge pull request 'fix: add local-only mode option on login modal' (#8) from feat/login-ux-polish into main

scott 6abb3298 7df3ad28

+5 -1
+1 -1
src/index.html
··· 180 180 <p class="welcome-signin-label">Sign in with your Atmosphere account</p> 181 181 <input type="text" class="username-input" id="username-input" placeholder="you.bsky.social" maxlength="100" autofocus /> 182 182 <div class="username-modal-actions"> 183 - <button class="btn-secondary" id="username-skip" style="display:none;">Skip</button> 183 + <button class="btn-secondary" id="username-skip">Use without an account</button> 184 184 <button class="btn-primary" id="username-confirm">Sign In</button> 185 185 </div> 186 186 </div>
+4
src/landing-events-identity.ts
··· 204 204 deps.usernameInput.setCustomValidity(''); 205 205 }); 206 206 207 + deps.usernameSkip.addEventListener('click', () => { 208 + deps.usernameModal.style.display = 'none'; 209 + }); 210 + 207 211 deps.userBadge.addEventListener('click', async () => { 208 212 const session = getSession(); 209 213 if (!session) return;