File size: 420 Bytes
3206347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { useQuery } from '@tanstack/react-query';
import api from 'helpers/api';

export default function useAppAuthClients(appKey) {
  const query = useQuery({
    queryKey: ['apps', appKey, 'auth-clients'],
    queryFn: async ({ signal }) => {
      const { data } = await api.get(`/v1/apps/${appKey}/auth-clients`, {
        signal,
      });
      return data;
    },
    enabled: !!appKey,
  });

  return query;
}