diff --git a/src/components/FlowEditor/nodeEditors/components/WaitEditor.tsx b/src/components/FlowEditor/nodeEditors/components/WaitEditor.tsx index 03e4979..80df2f2 100644 --- a/src/components/FlowEditor/nodeEditors/components/WaitEditor.tsx +++ b/src/components/FlowEditor/nodeEditors/components/WaitEditor.tsx @@ -13,9 +13,9 @@ interface DurationType { } const WaitEditor: React.FC = ({ nodeData, updateNodeData }) => { - const hourOptions = Array.from({ length: 23 }, (_, i) => i); - const minuteOptions = Array.from({ length: 59 }, (_, i) => i); - const secondOptions = Array.from({ length: 59 }, (_, i) => i); + const hourOptions = Array.from({ length: 24 }, (_, i) => i); + const minuteOptions = Array.from({ length: 60 }, (_, i) => i); + const secondOptions = Array.from({ length: 60 }, (_, i) => i); const [duration, setDuration] = useState({ hour: 0, minute: 0,