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: remove silly dynamic import

+1 -2
+1 -2
web/src/pages/Thread.tsx
··· 9 9 import { useBreadcrumb } from "../hooks/useBreadcrumb"; 10 10 import { usePageTitle } from "../hooks/usePageTitle"; 11 11 import { useThreadReplies } from "../hooks/useThreadReplies"; 12 - import { POST } from "../lib/lexicon"; 12 + import { BOARD, POST } from "../lib/lexicon"; 13 13 import { makeAtUri, parseAtUri } from "../lib/util"; 14 14 import * as limits from "../lib/limits"; 15 15 import { ··· 83 83 try { 84 84 const threadUri = makeAtUri(thread.did, POST, thread.rkey); 85 85 const attachments = await uploadAttachments(agent, files); 86 - const { BOARD } = await import("../lib/lexicon"); 87 86 const boardUri = makeAtUri(bbs.identity.did, BOARD, thread.boardSlug); 88 87 const resp = await createPost(agent, boardUri, body.trim(), { 89 88 root: threadUri,