fix: update UI tool dropdown grouping to use categoryKey instead of domainGroup

This commit is contained in:
jade
2026-07-11 01:59:28 +09:00
parent c44e8db08e
commit 931c22e17a
2 changed files with 2 additions and 2 deletions

View File

@@ -310,7 +310,7 @@
const groupedTools = {};
tools.forEach(tool => {
const group = tool.domainGroup || '기타 그룹';
const group = tool.categoryKey || '기타 그룹';
if (!groupedTools[group]) {
groupedTools[group] = [];
}