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: prevent flash of main UI before login modal' (#7) from feat/login-ux-polish into main

scott 7df3ad28 3e7a7c66

+3 -3
+2 -2
src/index.html
··· 173 173 </div> 174 174 </div> 175 175 176 - <!-- Sign-in modal --> 177 - <div class="modal-backdrop" id="username-modal" style="display:none;"> 176 + <!-- Sign-in modal (visible by default to prevent flash of main UI) --> 177 + <div class="modal-backdrop" id="username-modal"> 178 178 <div class="modal username-modal" role="dialog" aria-modal="true" aria-labelledby="username-modal-title"> 179 179 <h2 id="username-modal-title">Sign in</h2> 180 180 <p class="welcome-signin-label">Sign in with your Atmosphere account</p>
+1 -1
src/landing-events-identity.ts
··· 168 168 }; 169 169 170 170 if (hasSeenSetup()) { 171 - showLoginModal(); 172 171 return; 173 172 } 174 173 174 + deps.usernameModal.style.display = 'none'; 175 175 initSetupFlow(showLoginModal); 176 176 await renderSetupScreen(); 177 177 }