From 91ae70b19000e3ddd0afa97263e994bae1880adf Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 25 Jul 2022 00:49:40 +0000 Subject: [PATCH] Renamed script.js -> index.js --- public/index.html | 2 +- public/{script.js => index.js} | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) rename public/{script.js => index.js} (97%) diff --git a/public/index.html b/public/index.html index a6926ec..891522a 100644 --- a/public/index.html +++ b/public/index.html @@ -46,6 +46,6 @@ - + diff --git a/public/script.js b/public/index.js similarity index 97% rename from public/script.js rename to public/index.js index c11d86d..df8b6f7 100644 --- a/public/script.js +++ b/public/index.js @@ -9,11 +9,11 @@ async function main() { }; const stringifiedQuery = Qs.stringify({ - ...query - }, - { - addQueryPrefix: true - } + ...query + }, + { + addQueryPrefix: true + } ); const events = await (await fetch(`/api/events${stringifiedQuery}`)).json();