Can't delete tags

Hello!

when I make a new tag, I think I usually add [[]] then writing text in the middle. I also edit tags pretty often. it looks like each version of the tag I create gets saved under my list of tags. I can’t find any way to delete those tags.

it looks like a similar issue to this: https://forum.kinopio.club/t/tag-browser-has-interim-tags/143

also a quick note, the API docs say it’s GET /tags/:tagName but it seems it’s GET /tag/:tagName.

in case this helps debug, I was creating a tag like 2025 but ended up with a 202 tag.

GET /tag/202

[{"id":"000000000000000000001","name":"202","color":"#c2a8f4","userId":"000000000000000000002","createdAt":"2025-08-17T20:03:04.395Z","updatedAt":"2025-08-17T20:03:04.395Z","cardId":"000000000000000000003","spaceId":"000000000000000000004"}]
GET /card/000000000000000000003

{"status":404,"message":"card not found","cardId":"000000000000000000003","origin":"card.find","requestBody":{},"statusInfo":"https://httpstatusdogs.com/404"}
1 Like

thanks for the report. Yeah tags need a major refactor. the 202 tag appears because tags are created as you type, so at some point 202 is a valid tag.

Maybe there needs to be a clean up step on the server.

released a fix for this. when tags are updated (eg when a card is closed) , the server will do a check and remove unused tags that are no longer in the card name

1 Like

Thank you!!

1 Like