Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/all-tags.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,12 +278,12 @@
"borderColor": "border-[#40ccf7]"
},
{
"name": "SmartPaste",
"name": "JetBrains",
"color": "bg-[#61d0f2]",
"borderColor": "border-[#40ccf7]"
},
{
"name": "JetBrains",
"name": "SmartPaste",
"color": "bg-[#61d0f2]",
"borderColor": "border-[#40ccf7]"
},
Comment on lines +281 to 289
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Duplicate “SmartPaste” after the swap — dedupe tags.

Swapping “JetBrains”/“SmartPaste” here leaves another “SmartPaste” at Line 291, creating two SmartPaste tags. Remove the later duplicate to keep tags unique.

Apply this diff:

@@
     {
-      "name": "SmartPaste",
-      "color": "bg-[#61d0f2]",
-      "borderColor": "border-[#40ccf7]"
-    },
+      "name": "SmartPaste",
+      "color": "bg-[#61d0f2]",
+      "borderColor": "border-[#40ccf7]"
+    }
@@
-    {
-      "name": "SmartPaste",
-      "color": "bg-[#61d0f2]",
-      "borderColor": "border-[#40ccf7]"
-    },

Also applies to: 286-294

🤖 Prompt for AI Agents
In config/all-tags.json around lines 281–289 (and also the duplicate at
286–294), there are two entries named "SmartPaste" after the swap; remove the
later duplicate entry so each tag name is unique. Delete the redundant
"SmartPaste" object (the one at the later lines) and ensure the surrounding
commas remain valid JSON (adjust preceding/trailing commas if needed) so the
file stays syntactically correct.

Expand Down
Loading
Loading