From 5378e6cab07c9015106b88d522ea292f93d0ae34 Mon Sep 17 00:00:00 2001 From: latteeea Date: Mon, 17 Nov 2025 11:09:06 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=A4=91=EC=95=99=EC=B0=BD=EA=B3=A0?= =?UTF-8?q?=20=EC=A0=9C=ED=92=88=20=EB=AA=A8=EB=91=90=20=EB=82=98=EC=98=A4?= =?UTF-8?q?=EB=8F=84=EB=A1=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 6 ++++++ src/pages/stock/StockPage.tsx | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a547bf3..65b147c 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,12 @@ dist dist-ssr *.local +# Python virtual environment +venv/ +env/ +ENV/ +.venv + # Editor directories and files .vscode/* !.vscode/extensions.json diff --git a/src/pages/stock/StockPage.tsx b/src/pages/stock/StockPage.tsx index f18717c..c54c501 100644 --- a/src/pages/stock/StockPage.tsx +++ b/src/pages/stock/StockPage.tsx @@ -84,8 +84,8 @@ const StockPage = () => { const filteredStocks = selectedStore === "중앙창고" ? productsData .filter(product => { - // ID 1~7번 또는 100~101번만 표시 - return (product.id >= 1 && product.id <= 7) || (product.id >= 100 && product.id <= 101); + // ID 1~8번 또는 100~101번만 표시 + return (product.id >= 1 && product.id <= 8) || (product.id >= 100 && product.id <= 101); }) .map(product => { // storageStocks에서 해당 제품의 재고 정보 찾기