@@ -182,6 +182,7 @@ export function formatSecondsAsDaysOrTime(secs) {
return '00:00:00'
}
let text = ''
+ var hr = Math.floor(secs / 3600)
if (hr >= 24) {
let day = parseInt(hr / 24)
text = `${day} days left`