Remove "no tags" toast on tags import

This commit is contained in:
Wolfsblvt 2024-07-08 02:26:40 +02:00
parent f7e2d72ac7
commit 26b66e9b49

View File

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