Remove excess console.log

This commit is contained in:
Oliver-Akins 2024-01-07 22:29:57 -07:00
parent dfc51a5899
commit be2f493aa7

View file

@ -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;
};