From 43ee813e0beace015a48b27e424bbe14ab214ada Mon Sep 17 00:00:00 2001 From: boxgaming <75969133+boxgaming@users.noreply.github.com> Date: Mon, 25 Apr 2022 22:48:28 -0500 Subject: [PATCH] removed unused contentType parameter from getFile --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f74ffc5..d8db238 100644 --- a/index.html +++ b/index.html @@ -399,7 +399,7 @@ }); } - async function getFile(path, type, contentType) { + async function getFile(path, type) { var file = await fetch(path); if (type == "text") { return await file.text();