diff --git a/README.md b/README.md index bac8cab..716dc1d 100644 --- a/README.md +++ b/README.md @@ -31,4 +31,4 @@ Rainbucket is hosted on a Digital Ocean VPS, ensuring that the application is no Rainbucket stands as a testament to the power of simplicity in software tools. By mirroring the functionality of Request Bin and extending it with a modern technology stack, Rainbucket offers an indispensable resource for anyone looking to inspect and debug HTTP requests. Try Rainbucket today and streamline your development and testing workflows. -Built with love by Allen Lee, Rachele Lang, Tess Lockey, and Weston Ludeke \ No newline at end of file +Built with love by Allen Lee, Rachele Lang, Tess Lockey, and Weston Ludeke!!! diff --git a/frontend/utils/timeFormatter.js b/frontend/utils/timeFormatter.js index 241461d..51b8a10 100644 --- a/frontend/utils/timeFormatter.js +++ b/frontend/utils/timeFormatter.js @@ -15,7 +15,7 @@ function timeExtract(timestamp) { const d = new Date(timestamp); return { year: String(d.getFullYear()).slice(2), - month: String(d.getMonth()).padStart(2, "0"), + month: String(d.getMonth() + 1).padStart(2, "0"), day: String(d.getDate()).padStart(2, "0"), hour: (d.getHours() % 12) ? d.getHours() : 12, minute: d.getMinutes(),