atproto explorer

error message color

+2 -5
+1
src/components/navbar.tsx
··· 24 24 "did:plc:hx53snho72xoj7zqt5uice4u": "i-lucide-rose", 25 25 "did:plc:wzsilnxf24ehtmmc3gssy5bu": "i-lucide-music-2", 26 26 "did:plc:bnqkww7bjxaacajzvu5gswdf": "i-lucide-gem", 27 + "did:plc:hdhoaan3xa3jiuq4fg4mefid": "i-lucide-sparkles", 27 28 }; 28 29 29 30 const NavBar = (props: { params: Params }) => {
+1 -5
src/layout.tsx
··· 66 66 </Show> 67 67 <Show keyed when={location.pathname}> 68 68 <ErrorBoundary 69 - fallback={(err) => ( 70 - <div class="mt-3 break-words text-red-500 dark:text-red-400"> 71 - Error: {err.message} 72 - </div> 73 - )} 69 + fallback={(err) => <div class="mt-3 break-words">Error: {err.message}</div>} 74 70 > 75 71 <Suspense fallback={<div class="i-lucide-loader-circle mt-3 animate-spin text-xl" />}> 76 72 {props.children}