diff --git a/src/pages/index.astro b/src/pages/index.astro index 9cc5009..47368f0 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -12,9 +12,9 @@ import PageLayout from "../layouts/PageLayout.astro";

This little tool simplifies the creation of copy-pasta Steam reviews (if - you are on this website, this is what you are looking for). I - find them moderately funny, so I made this website to avoid copy-pasting - the copy pasta so much. ðŸ˜† + you are on this website, this is what you are looking for). I find + them moderately funny, so I made this website to avoid copy-pasting the copy + pasta so much. ðŸ˜†

The code is open source → @@ -133,7 +136,7 @@ import PageLayout from "../layouts/PageLayout.astro"; } copyButton?.style.setProperty("display", "none"); - [...document.getElementsByTagName("input")].forEach((input) => { + Array.from(document.getElementsByTagName("input")).forEach((input) => { if (input.type == "checkbox") { data[input.name] = []; }