Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

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

web: cleanup profile

+3 -3
+1 -1
web/src/pages/ProfilePage.tsx web/src/pages/Profile.tsx
··· 9 9 import type { MyThread } from "../lib/mythreads"; 10 10 import type { ProfileLoaderData } from "../router/loaders/profile"; 11 11 12 - export default function ProfilePage() { 12 + export default function Profile() { 13 13 const { handle, profile, threads } = useLoaderData() as ProfileLoaderData; 14 14 const { user, agent } = useAuth(); 15 15 const revalidator = useRevalidator();
+2 -2
web/src/router/routes.tsx
··· 11 11 import Home from "../pages/Home"; 12 12 import Login from "../pages/Login"; 13 13 import OAuthCallback from "../pages/OAuthCallback"; 14 - import ProfilePage from "../pages/ProfilePage"; 14 + import Profile from "../pages/Profile"; 15 15 import BBS from "../pages/BBS"; 16 16 import Board from "../pages/Board"; 17 17 import Thread from "../pages/Thread"; ··· 87 87 { 88 88 path: "/profile/:handle", 89 89 loader: profileLoader, 90 - element: <ProfilePage />, 90 + element: <Profile />, 91 91 errorElement: <ErrorPage />, 92 92 }, 93 93 { path: "*", element: <NotFound /> },