tangled
alpha
login
or
join now
whey.party
/
red-dwarf
82
fork
atom
an independent Bluesky client using Constellation, PDS Queries, and other services
reddwarf.app
frontend
spa
bluesky
reddwarf
microcosm
client
app
82
fork
atom
overview
issues
25
pulls
pipelines
dont refetch feed on refocus
rimar1337
6 months ago
bd1ce421
843607cb
+3
-1
2 changed files
expand all
collapse all
unified
split
index.html
src
utils
useQuery.ts
+1
-1
index.html
···
7
7
<meta name="theme-color" content="#000000" />
8
8
<meta
9
9
name="description"
10
10
-
content="Web site created using create-tsrouter-app"
10
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
549
+
staleTime: Infinity,
550
550
+
refetchOnWindowFocus: false,
549
551
enabled: !!options.feedUri && (options.isAuthed ? !!options.agent && !!options.pdsUrl && !!options.feedServiceDid : true),
550
552
});
551
553
}