From 26b66e9b494cf3fc40eb187ffe6fb770d141b4ec Mon Sep 17 00:00:00 2001 From: Wolfsblvt Date: Mon, 8 Jul 2024 02:26:40 +0200 Subject: [PATCH] Remove "no tags" toast on tags import --- public/scripts/tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/tags.js b/public/scripts/tags.js index 9d09c8219..ee299bdfd 100644 --- a/public/scripts/tags.js +++ b/public/scripts/tags.js @@ -717,7 +717,7 @@ async function importTags(character, { forceShow = false } = {}) { // Gather the tags to import based on the selected setting const tagNamesToImport = await handleTagImport(character, { forceShow }); if (!tagNamesToImport?.length) { - toastr.info('No tags to import', 'Importing Tags'); + console.debug('No tags to import'); return; }