Remove filtering of placeholders based on add_tags preference

This commit is contained in:
mic 2025-03-06 21:42:26 +01:00
parent cf66428a08
commit f82b137c10

View file

@ -163,9 +163,6 @@ export async function getPlaceholders(onlyEnabled = false){
}
// console.log('>>>>>>>>>>>> getPlaceholders output: ' + JSON.stringify(output));
let prefs = await browser.storage.local.get({ add_tags: false });
if (prefs.add_tags) {
output = output.filter(obj => obj.id !== 'tags_full_list' && obj.id !== 'tags_current_email');
}
return output;
}