Remove "no tags" toast on tags import
| @@ -717,7 +717,7 @@ async function importTags(character, { forceShow = false } = {}) { | |||
| 717 | // Gather the tags to import based on the selected setting | 717 | // 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 | } |
| 723 | 723 | ||