Remove unused preferences retrieval in getPlaceholders function

This commit is contained in:
Mic 2025-04-16 23:39:00 +02:00
parent 13cfed9c56
commit b49875992a

View file

@ -197,7 +197,6 @@ export async function getPlaceholders(onlyEnabled = false){
output.sort((a, b) => a.id.localeCompare(b.id));
}
// console.log('>>>>>>>>>>>> getPlaceholders output: ' + JSON.stringify(output));
let prefs = await browser.storage.local.get({ add_tags: false });
return output;
}