From e50e8ef1fe5f784b595ff4d9f2cab77cb7f34426 Mon Sep 17 00:00:00 2001 From: josh Date: Mon, 4 May 2026 19:27:45 -0400 Subject: [PATCH] Remove catalog edit notice from edit inventory modal Co-Authored-By: Claude Opus 4.6 --- .../components/modals/EditInventoryFlow.tsx | 26 +------------------ 1 file changed, 1 insertion(+), 25 deletions(-) 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