From 4d988c98d01bc5c8982190f24db31a70d2dc2dd9 Mon Sep 17 00:00:00 2001 From: Umar Getagazov Date: Thu, 28 Nov 2024 12:37:51 +0000 Subject: [PATCH] Fix tag name typo in the Timestamp component --- components/buffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/buffer.js b/components/buffer.js index 7e159b3..0bb5fd5 100644 --- a/components/buffer.js +++ b/components/buffer.js @@ -43,7 +43,7 @@ function _Timestamp({ date, url, showSeconds }) { if (showSeconds) { timestamp += ":--"; } - return html`${timestamp}`; + return html`${timestamp}`; } let hh = date.getHours().toString().padStart(2, "0");