handy online tools for AT Protocol boat.kelinci.net
atproto bluesky atcute typescript solidjs
20
fork

Configure Feed

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

refactor: nit on abortable cleanup

Mary 25ee6736 b0b2c9db

+1 -2
+1 -2
src/lib/utils/abortable.ts
··· 6 6 let controller: AbortController | undefined; 7 7 8 8 const cleanup = (): void => { 9 - controller?.abort(); 10 - return (controller = undefined); 9 + return (controller &&= controller.abort() as undefined); 11 10 }; 12 11 13 12 const signal = (): AbortSignal => {