import axios from '~/lib/utils/axios_utils'; import { reportToSentry } from '../graph/utils'; export const reportPerformance = (path, stats) => { axios.post(path, stats).catch((err) => { reportToSentry('links_inner_perf', `error: ${err}`); }); };