File size: 288 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { useSupportStatus } from '../data/use-support-status';

export function useShouldRenderEmailOption() {
	const { data: supportStatus, isFetching } = useSupportStatus();

	return {
		isLoading: isFetching,
		render: Boolean( supportStatus?.availability.force_email_support ),
	};
}