removed logs

This commit is contained in:
Anton 2023-09-01 01:11:52 +02:00
parent b011159912
commit bd0e3a94c2
2 changed files with 0 additions and 2 deletions

View File

@ -50,7 +50,6 @@ export function ItemFormPopup(props: ItemFormPopupProps) {
formItem.text.toLocaleLowerCase().match(hashTagRegex)?.map(tag=> {
if (!tags.find((t) => t.id === tag.slice(1))) {
console.log(tag);
addTag({id: tag.slice(1), color: randomColor()})
}
});

View File

@ -29,7 +29,6 @@ export const TextView = ({ item }: { item?: Item }) => {
if (!init.current) {
item?.text.toLocaleLowerCase().match(hashTagRegex)?.map(tag=> {
if (!tags.find((t) => t.id === tag.slice(1))) {
console.log(tag);
addTag({id: tag.slice(1), color: randomColor()})
}
});