From be2f493aa7dd4cf6e5dbd03eb5948465c4f22f2e Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 7 Jan 2024 22:29:57 -0700 Subject: [PATCH] Remove excess console.log --- module/helpers/detailsExpanded.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/module/helpers/detailsExpanded.mjs b/module/helpers/detailsExpanded.mjs index 7d56e33..bf9ddef 100644 --- a/module/helpers/detailsExpanded.mjs +++ b/module/helpers/detailsExpanded.mjs @@ -7,6 +7,5 @@ * @returns {"open"|null} The HTML insertion indicating the details is expanded */ export function detailsExpanded(expanded, collapseId) { - console.log(`.dungeon |`, collapseId, expanded) return expanded.has(collapseId) ? "open" : null; }; \ No newline at end of file