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);