Skip to content
Snippets Groups Projects
Commit 24940126 authored by Tin Geber's avatar Tin Geber
Browse files

caught an unused var

parent 317e631e
No related branches found
No related tags found
No related merge requests found
......@@ -46,10 +46,10 @@ export const Dashboard: React.FC = () => {
);
const updateTime: Date = new Date(sysInfo.sysInfo.lastUpdated);
// const hoursSinceUpdate = Math.floor((new Date().getTime() - updateTime.getTime()) / 3600000);
const hoursSinceUpdate = Math.floor((new Date().getTime() - updateTime.getTime()) / 3600000);
// manual toggles to test alert bar
const hoursSinceUpdate = 21;
// const hoursSinceUpdate = 21;
// const lastRelease = sysInfo.sysInfo.lastRelease;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment