WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
4
fork

Configure Feed

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

fix(web): update setupSuccessfulFetch type to include replyCount and lastReplyAt

The helper's topics array element type was not updated alongside makeTopicsResponse,
causing tsc to reject the new test cases with TS2353. Vitest strips types via esbuild
so it passed locally; tsc in CI caught the mismatch.

Malpercio fe5dc3b1 c8d9da67

+1 -1
+1 -1
apps/web/src/routes/__tests__/boards.test.tsx
··· 126 126 * 3 (sequential): GET /api/categories/7 127 127 */ 128 128 function setupSuccessfulFetch(options: { 129 - topics?: Array<{ id?: string; did?: string; handle?: string | null; text?: string; createdAt?: string }>; 129 + topics?: Array<{ id?: string; did?: string; handle?: string | null; text?: string; createdAt?: string; replyCount?: number; lastReplyAt?: string | null }>; 130 130 total?: number; 131 131 offset?: number; 132 132 boardOverrides?: Partial<Record<string, unknown>>;