diff --git a/docs/index.html b/docs/index.html
index e0fd2c4..562e622 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -86,7 +86,8 @@
Log in
- Not registered? click here!
+ Not registered?
+ click here!
Don't have FLO credentials?
Generate FLO credentials
@@ -364,7 +365,8 @@
- Register these credentials
+
+ Register these credentials
Keep your private key secure and don't share with anyone.
@@ -735,6 +737,7 @@
function getFormattedTime(timeString, relative) {
try {
+ console.log(timeString)
const [date, time] = timeString.split('T')
const [year, month, day] = date.split('-').map(v => parseInt(v))
let [hours, minutes] = time.split(':').map(v => parseInt(v))
@@ -743,7 +746,7 @@
const monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
];
- const monthName = monthNames[month]
+ const monthName = monthNames[month - 1]
minutes = minutes < 10 ? `0${minutes}` : minutes
let finalHours = ``;