[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

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

fix: remove renamed component

-18
-18
app/components/AuthButton.vue
··· 1 - <script setup lang="ts"> 2 - const showModal = shallowRef(false) 3 - const { user } = useAtproto() 4 - </script> 5 - 6 - <template> 7 - <div class="relative"> 8 - <button 9 - type="button" 10 - class="relative font-mono text-sm flex items-center justify-center w-fit rounded-md transition-colors duration-200 hover:bg-bg-subtle focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-fg/50" 11 - @click="showModal = true" 12 - > 13 - {{ user?.handle || 'login' }} 14 - </button> 15 - 16 - <AuthModal v-model:open="showModal" /> 17 - </div> 18 - </template>