From 96c3e4c24adbdc59d11f7ea43888e1c47d061f90 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Mon, 17 Nov 2025 17:07:23 -0600 Subject: [PATCH] fix(quality): request was missing the forced selection --- .../routes/_old/old/quality/-components/RequestPallet.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/routes/_old/old/quality/-components/RequestPallet.tsx b/frontend/src/routes/_old/old/quality/-components/RequestPallet.tsx index c0c8f3d..d63fcef 100644 --- a/frontend/src/routes/_old/old/quality/-components/RequestPallet.tsx +++ b/frontend/src/routes/_old/old/quality/-components/RequestPallet.tsx @@ -45,6 +45,12 @@ export default function RequestPallet() { "You did not change the running number, please add a valid running number", ); } + + if (value.moveTo === "") { + return toast.error( + "Please select where you would like the pallets taken to.", + ); + } const postData = { runningNr: Number(value.runningNr), moveTo: value.moveTo,