Kaballas's picture
initialize project structure with essential configurations and components
56b6519
raw
history blame contribute delete
267 Bytes
import { getAudits } from './audits';
export const getAuditsByClientName = async (clientName: string) => {
// get all audits and filter by clientName
const audits = await getAudits();
return audits.datas.filter(audit => audit.company?.name === clientName);
};