experimenting with making decentralized fanfic archives on atproto. github mirror: https://github.com/haetae-bit/fanfic-atproto

Debugging cleanup

Cocoa 230c38bf 7f3fefd2

Changed files
+1 -4
src
pages
works
+1 -4
src/pages/works/index.astro
··· 14 14 }); 15 15 16 16 function shouldShow(work) { 17 - console.log(work); 18 - let result = !work.draft || (loggedInUser && work.author == loggedInUser.did) 19 - console.log(result); 20 - return result; 17 + return !work.draft || (loggedInUser && work.author == loggedInUser.did) 21 18 } 22 19 --- 23 20