chore: Use types from the web package

This commit is contained in:
Faruk AYDIN
2024-01-15 13:30:48 +01:00
parent 7831f2925b
commit 159931a6ea
77 changed files with 934 additions and 378 deletions

View File

@@ -1,10 +1,10 @@
import { useQuery } from '@apollo/client';
import { TInvoice } from '@automatisch/types';
import { TInvoice } from 'types';
import { GET_INVOICES } from 'graphql/queries/get-invoices.ee';
type UseInvoicesReturn = {
invoices: TInvoice[],
invoices: TInvoice[];
loading: boolean;
};
@@ -13,6 +13,6 @@ export default function useInvoices(): UseInvoicesReturn {
return {
invoices: data?.getInvoices || [],
loading: loading
loading: loading,
};
}