ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
16
fork

Configure Feed

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

fix(ui): safely access user prop when auth middleware hasn't run

byarielm.fyi 91655fb7 91a35b94

verified
+2 -2
+2 -2
inertia/layouts/default.vue
··· 42 42 </div> 43 43 <div> 44 44 <nav> 45 - <template v-if="page.props.user.did"> 46 - <span>{{ page.props.user.did }}</span> 45 + <template v-if="page.props.user?.did"> 46 + <span>{{ page.props.user?.did }}</span> 47 47 <Form route="oauth.logout"> 48 48 <button type="submit">Logout</button> 49 49 </Form>