diff --git a/web/src/components/modals/EditInventoryFlow.tsx b/web/src/components/modals/EditInventoryFlow.tsx index 1646f12..83bcdde 100644 --- a/web/src/components/modals/EditInventoryFlow.tsx +++ b/web/src/components/modals/EditInventoryFlow.tsx @@ -2,7 +2,7 @@ import { useState } from "react"; import { useMutation, useQueryClient } from "@tanstack/react-query"; import type { Bootstrap, Item } from "../../types.js"; import { TYPES } from "../../types.js"; -import { fmt, TYPE_GLYPHS } from "../../format.js"; +import { fmt } from "../../format.js"; import { api } from "../../api.js"; import { Btn, Field, Input, Select } from "../primitives/index.js"; import { ModalBackdrop, ModalHeader, ModalFooter } from "./ModalChrome.js"; @@ -106,30 +106,6 @@ export function EditInventoryFlow({ />
-
- - {TYPE_GLYPHS[item.type]} - - - Editing this physical instance of{" "} - {item.name} ({item.type} ยท{" "} - {item.kind}). To change the product (SKU, name, type), edit the catalog entry. - -
-
Source