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

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.

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