export const useAccountSession = () => useFetch(
"/api/auth/session",
{
transform: (input) => input === undefined ? null : input,
}
);