A personal media tracker built on the AT Protocol opnshelf.xyz
at main 10 lines 245 B view raw
1import { authControllerMeOptions } from "@opnshelf/api"; 2import { useQuery } from "@tanstack/react-query"; 3 4export function useCurrentUser() { 5 return useQuery({ 6 ...authControllerMeOptions(), 7 staleTime: 5 * 60 * 1000, 8 retry: false, 9 }); 10}