Remove "no tags" toast on tags import

26b66e9b494cf3fc40eb187ffe6fb770d141b4ec

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/tags.js+1 -1
@@ -717,7 +717,7 @@ async function importTags(character, { forceShow = false } = {}) {
717 // Gather the tags to import based on the selected setting717 // Gather the tags to import based on the selected setting
718 const tagNamesToImport = await handleTagImport(character, { forceShow });718 const tagNamesToImport = await handleTagImport(character, { forceShow });
719 if (!tagNamesToImport?.length) {719 if (!tagNamesToImport?.length) {
720 toastr.info('No tags to import', 'Importing Tags');720 console.debug('No tags to import');
721 return;721 return;
722 }722 }
723723