Changeset 057453c for src/api/service.ts
- Timestamp:
- 02/26/25 10:05:32 (5 weeks ago)
- Branches:
- main
- Children:
- 299af01
- Parents:
- 5d6f37a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/api/service.ts
r5d6f37a r057453c 1 1 import { useMemo } from 'react'; 2 2 // types 3 import { Service } from 'mvpmasters-shared'; 4 // db 5 import { collections, collectionFetcher as fetcher } from 'src/lib/firestore'; 3 import { Service } from 'src/schemas'; 6 4 // swr 7 5 import useSWR from 'swr'; 6 import { endpoints, fetcher } from 'src/utils/axios'; 8 7 9 8 export function useGetServices() { 10 const collectionName = collections.service; 11 12 const { data, isLoading, error, isValidating } = useSWR(collectionName, fetcher<Service>, { 13 revalidateOnFocus: false, 14 }); 9 const { data, isLoading, error, isValidating } = useSWR<Service[]>( 10 endpoints.service, 11 () => fetcher<Service[]>(endpoints.service), 12 { 13 revalidateOnFocus: false, 14 } 15 ); 15 16 16 17 const memoizedValue = useMemo(
Note:
See TracChangeset
for help on using the changeset viewer.