From 8530657cad59b3b106077430ea5f503138ec4a97 Mon Sep 17 00:00:00 2001 From: Suitangi Uil Date: Fri, 26 Jan 2024 00:45:37 -0800 Subject: [PATCH] Fixed weird spacing issue --- scripts/index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/index.js b/scripts/index.js index 0d5d1e4..a64b49a 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -525,9 +525,7 @@ function gameLostDaily() { action: function(linkButton) { let d = new Date(); let str = - `Daily Befuddle ${d.toLocaleDateString("en-US")} - \nX${(window.gameSesh.hideBlanks ? '*' : '')} - \n${window.location.href}`; + `Daily Befuddle ${d.toLocaleDateString("en-US")}\nX${(window.gameSesh.hideBlanks ? '*' : '')}\n${window.location.href}`; clipboardHandler(linkButton, str); return false; }