whoami7 - Manager
:
/
home
/
topsuzmw
/
public_html
/
wp-content
/
plugins
/
extendify
/
src
/
Launch
/
hooks
/
Upload File:
files >> /home/topsuzmw/public_html/wp-content/plugins/extendify/src/Launch/hooks/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 }; };
Copyright ©2021 || Defacer Indonesia