atproto explorer
0
fork

Configure Feed

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

add warning

Juliet 9db945a1 b645c49f

+12 -3
+12 -3
src/components/account.tsx
··· 14 14 import { agent, Login, retrieveSession, Sessions, setAgent } from "./login.jsx"; 15 15 import { Modal } from "./modal.jsx"; 16 16 17 - const AccountManager = () => { 17 + export const AccountManager = () => { 18 18 const [openManager, setOpenManager] = createSignal(false); 19 19 const [sessions, setSessions] = createStore<Sessions>(); 20 20 const [avatars, setAvatars] = createStore<Record<Did, string>>(); ··· 144 144 </For> 145 145 </div> 146 146 <Login /> 147 + <div class="mt-2 flex items-start gap-2 rounded-lg border border-yellow-600 bg-yellow-50 p-3 text-sm dark:border-yellow-800 dark:bg-yellow-950/20"> 148 + <span class="iconify lucide--triangle-alert mt-0.5 flex-shrink-0 text-yellow-600 dark:text-yellow-500" /> 149 + <div class="flex flex-col gap-1"> 150 + <span class="font-semibold text-yellow-800 dark:text-yellow-400">Warning</span> 151 + <span class="text-yellow-800/90 dark:text-yellow-400/90"> 152 + Logging in lets you create, edit, and delete records in your repository. Use at your 153 + own risk. The developer (who is the cutest thing in the world) cannot be held 154 + accountable for any issues. 155 + </span> 156 + </div> 157 + </div> 147 158 </div> 148 159 </Modal> 149 160 <button ··· 160 171 </> 161 172 ); 162 173 }; 163 - 164 - export { AccountManager };