15 lines
666 B
TypeScript
15 lines
666 B
TypeScript
import { useSession } from "next-auth/react";
|
|
|
|
import { trpc } from "@calcom/trpc/react";
|
|
|
|
export function useOrgBrandingValues() {
|
|
const session = useSession();
|
|
return trpc.viewer.organizations.getBrand.useQuery(undefined, {
|
|
// Only fetch if we have a session to avoid flooding logs with errors
|
|
enabled: session.status === "authenticated",
|
|
// This is important because usage of useOrgBrandingValues is spread across the app and there isn't going to be anything new on fetching on every new mount of a component
|
|
// We can just refetch the query only when org slug or logo changes which would be not frequent
|
|
staleTime: Infinity,
|
|
}).data;
|
|
}
|