Files
stats/apps/dashboard/src/hooks/usePropertyValues.ts
Carl-Gerhard Lindesvärd 32e91959f6 chore(root): migrate to biome
2024-09-18 23:46:11 +02:00

12 lines
263 B
TypeScript

import { api } from '@/trpc/client';
export function usePropertyValues(
params: Parameters<typeof api.chart.values.useQuery>[0],
) {
const query = api.chart.values.useQuery(params, {
staleTime: 1000 * 60 * 10,
});
return query.data?.values ?? [];
}