1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

chore: remove console.log

This commit is contained in:
Thomas Heartman 2024-12-10 14:39:57 +01:00
parent b2c58102dd
commit c860d8e434
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -62,7 +62,6 @@ export const ManageTags: VFC<IManageTagsProps> = ({
const features = data.map(({ name }) => name); const features = data.map(({ name }) => name);
const payload = { features, tags: { addedTags, removedTags } }; const payload = { features, tags: { addedTags, removedTags } };
try { try {
console.log(addedTags, removedTags, features);
const toastText = [ const toastText = [
addedTags.length > 0 && addedTags.length > 0 &&
`added ${addedTags.length} tag${addedTags.length > 1 ? 's' : ''}`, `added ${addedTags.length} tag${addedTags.length > 1 ? 's' : ''}`,