10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
|
import { trpc } from "@calcom/trpc/react";
|
||
|
|
||
|
export function useHasTeamPlan() {
|
||
|
const hasTeam = trpc.viewer.teams.hasTeamPlan.useQuery();
|
||
|
|
||
|
return { isLoading: hasTeam.isLoading, hasTeamPlan: hasTeam.data?.hasTeamPlan || false };
|
||
|
}
|
||
|
|
||
|
export default useHasTeamPlan;
|