Refetch some data on an interval (#2114)
* Match refetch intervals to stale time * Lower refetch interval for own-profile
This commit is contained in:
parent
47771b9066
commit
a924df4dcd
5 changed files with 17 additions and 4 deletions
|
@ -8,7 +8,8 @@ export const RQKEY = () => ['app-passwords']
|
|||
|
||||
export function useAppPasswordsQuery() {
|
||||
return useQuery({
|
||||
staleTime: STALE.MINUTES.ONE,
|
||||
staleTime: STALE.MINUTES.FIVE,
|
||||
refetchInterval: STALE.MINUTES.ONE,
|
||||
queryKey: RQKEY(),
|
||||
queryFn: async () => {
|
||||
const res = await getAgent().com.atproto.server.listAppPasswords({})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue