diff --git a/netmiko_client/src/components/TestDevice/TestDevice.jsx b/netmiko_client/src/components/TestDevice/TestDevice.jsx index b36e768..a9102ba 100644 --- a/netmiko_client/src/components/TestDevice/TestDevice.jsx +++ b/netmiko_client/src/components/TestDevice/TestDevice.jsx @@ -411,9 +411,9 @@ const TestDevice = ({ socket, user }) => { id_station: selectStation, }); for (let i = 0; i < res.data.listLastLog.length; i++) { - // if (Date.now() - res.data.listLastLog[i].created_at < 3600000) { + if (Date.now() - res.data.listLastLog[i].created_at < 3600000) { temp.push(res.data.listLastLog[i]); - // } + } } setlistLastLogs(temp);