From fb97d8df6f23c508a9a0113fc85000ecb1ab8eb4 Mon Sep 17 00:00:00 2001 From: Masaaki Hirano Date: Thu, 4 Dec 2025 13:35:08 +0900 Subject: [PATCH] Revert "Fix: Use order-independent tag comparison in tag wizard (#30)" This reverts commit 166f4a575b4eaae089977dd6ba30c8b8c12a32bf. --- packages/tui/apps/tag/app.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/tui/apps/tag/app.tsx b/packages/tui/apps/tag/app.tsx index bec476ef..7cc70d5c 100644 --- a/packages/tui/apps/tag/app.tsx +++ b/packages/tui/apps/tag/app.tsx @@ -240,8 +240,7 @@ function ConfirmStep({ }) const customCurrentTags = currentTags.filter((t) => t !== "latest") const tagsChanged = - tags.length !== customCurrentTags.length || - [...tags].sort().join(",") !== [...customCurrentTags].sort().join(",") + tags.length !== customCurrentTags.length || tags.some((t, i) => t !== customCurrentTags[i]) return ( Confirm update for {expertKey}: