A personal media tracker built on the AT Protocol opnshelf.xyz
0
fork

Configure Feed

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

fix: fix tsc detailactions

+2 -1
+2 -1
apps/web/src/components/detail/DetailActions.tsx
··· 54 54 posthog.capture("content_shared", { 55 55 media_type: mediaType, 56 56 media_id: mediaId, 57 - share_method: navigator.share ? "native" : "clipboard", 57 + share_method: 58 + typeof navigator.share === "function" ? "native" : "clipboard", 58 59 url, 59 60 }); 60 61 if (navigator.share) {