From a08e32078c2941fed644697899ef3b38cfa684fe Mon Sep 17 00:00:00 2001 From: Connor Cleveland Date: Wed, 25 Oct 2023 00:52:44 -0500 Subject: [PATCH] remove now unused formatVendor --- client/src/pages/filaments/show.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/src/pages/filaments/show.tsx b/client/src/pages/filaments/show.tsx index 047fe56..73f29fb 100644 --- a/client/src/pages/filaments/show.tsx +++ b/client/src/pages/filaments/show.tsx @@ -31,10 +31,6 @@ export const FilamentShow: React.FC = () => { return t("filament.titles.show_title", { id: item.id, name: vendorPrefix + item.name }); }; - const formatVendor = (item: IVendor) => { - const URL = `/vendor/show/${item.id}`; - return {item.name}; - }; const gotoVendor = (): undefined => { const URL = `/vendor/show/${record?.vendor?.id}`; navigate(URL);