an independent Bluesky client using Constellation, PDS Queries, and other services reddwarf.app
frontend spa bluesky reddwarf microcosm client app
99
fork

Configure Feed

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

dont refetch feed on refocus

rimar1337 bd1ce421 843607cb

+3 -1
+1 -1
index.html
··· 7 7 <meta name="theme-color" content="#000000" /> 8 8 <meta 9 9 name="description" 10 - content="Web site created using create-tsrouter-app" 10 + content="an appview-less Bluesky client using Constellation and PDS Queries" 11 11 /> 12 12 <link rel="apple-touch-icon" href="/redstar.png" /> 13 13 <link rel="manifest" href="/manifest.json" />
+2
src/utils/useQuery.ts
··· 546 546 queryFn, 547 547 initialPageParam: undefined as never, 548 548 getNextPageParam: (lastPage) => lastPage.cursor as null | undefined, 549 + staleTime: Infinity, 550 + refetchOnWindowFocus: false, 549 551 enabled: !!options.feedUri && (options.isAuthed ? !!options.agent && !!options.pdsUrl && !!options.feedServiceDid : true), 550 552 }); 551 553 }