diff --git a/src/components/UserDevicesTable.tsx b/src/components/UserDevicesTable.tsx index a9555999..9d1469f1 100644 --- a/src/components/UserDevicesTable.tsx +++ b/src/components/UserDevicesTable.tsx @@ -548,7 +548,7 @@ export default function UserDevicesTable({ userClients }: ClientTableProps) { - {clientRow.approvalState === "pending" && ( + {clientRow.approvalState === "pending" && build !== "oss" && ( <> approveDevice(clientRow)} @@ -653,7 +653,7 @@ export default function UserDevicesTable({ userClients }: ClientTableProps) { ]; if (build === "oss") { - return allOptions.filter((option) => option.value !== "pending"); + return allOptions.filter((option) => option.value !== "pending" && option.value !== "denied"); } return allOptions;