Graphical PDS migrator for AT Protocol
15
fork

Configure Feed

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

otel

+3 -3
+2 -2
deno.json
··· 2 2 "tasks": { 3 3 "check": "deno fmt --check . && deno lint . && deno check **/*.ts && deno check **/*.tsx", 4 4 "dev": "deno run -A --env --watch=static/,routes/ dev.ts", 5 - "build": "deno run -A dev.ts build", 6 - "start": "deno run -A main.ts", 5 + "build": "deno run -A --unstable-otel dev.ts build", 6 + "start": "deno run -A --unstable-otel main.ts", 7 7 "update": "deno run -A -r jsr:@fresh/update ." 8 8 }, 9 9 "lint": {
+1 -1
routes/index.tsx
··· 27 27 label="MOBILE NOT SUPPORTED" 28 28 className="opacity-50 cursor-not-allowed sm:opacity-100 sm:cursor-pointer" 29 29 onClick={(e: MouseEvent) => { 30 - if (window.innerWidth < 640) { 30 + if (globalThis.innerWidth < 640) { 31 31 e.preventDefault(); 32 32 } 33 33 }}