Sort logs according to time (#625)

This commit is contained in:
Arpit 2021-08-28 09:09:31 +05:30 committed by GitHub
parent 03cb61d8e9
commit ddef2b0600
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,7 @@ export const LeftSidebarDebugger = ({ darkMode, components, errors }) => {
})
})
const newData = [...copy, ...errorData]
const newData = [...errorData, ...copy]
return newData
})