From 9f68cd2146c8dc9b62cec42661527cd88f63eccc Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Fri, 2 May 2025 19:12:49 -0500 Subject: [PATCH] fix(manual print): missing role added --- frontend/src/components/production/ocp/Lots.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/production/ocp/Lots.tsx b/frontend/src/components/production/ocp/Lots.tsx index 010e3b3..5cf839f 100644 --- a/frontend/src/components/production/ocp/Lots.tsx +++ b/frontend/src/components/production/ocp/Lots.tsx @@ -70,7 +70,7 @@ export default function Lots() { const { settings } = useSettingStore(); const server = settings.filter((n) => n.name === "server")[0]?.value || ""; - const roles = ["admin", "manager", "operator"]; + const roles = ["technician", "admin", "manager", "operator"]; const lotdata = data ? data : []; if (user && roles.includes(user.role)) {