🐐 GOAT Shell

Current path: home/fresvfqn/emergencywaterdamagenyc.com/wp-content/plugins/extendify/src/Launch/hooks/



⬆️ Go up: Launch

📄 Viewing: useSiteProfile.js

import useSWRImmutable from 'swr/immutable';
import { getSiteProfile } from '@launch/api/DataApi';
import { useUserSelectionStore } from '@launch/state/user-selections';

export const useSiteProfile = () => {
	const { siteInformation, businessInformation } = useUserSelectionStore();
	const { data, error } = useSWRImmutable(
		{
			key: 'site-profile',
			title: siteInformation?.title,
			description: businessInformation?.description,
		},
		getSiteProfile,
	);

	return { siteProfile: data, error, loading: !data && !error };
};


📤 Upload File


📁 Create Folder