From 2f8d77e90570ce8308449e6bc69de43b1ec93536 Mon Sep 17 00:00:00 2001 From: evanwill Date: Fri, 1 Dec 2023 15:15:21 -0800 Subject: [PATCH] change papaparse error alert to console.log to avoid Safari bug --- _includes/js/pageinit-js.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/js/pageinit-js.html b/_includes/js/pageinit-js.html index 181fe85..8ba3ecd 100644 --- a/_includes/js/pageinit-js.html +++ b/_includes/js/pageinit-js.html @@ -36,7 +36,7 @@ loadingIcon.classList.add('d-none'); }, error: (err) => { - alert("There is an error parsing your CSV! Please check the configured URL or file. The most common issue is incorrect filename, path, or URL so that your CSV is not found."); + console.log("There is an error parsing your CSV! Please check the configured URL or file. The most common issue is incorrect filename, path, or URL so that your CSV is not found."); } }); }