Merge pull request #859 from qwertystars/fix/migration-import-path

fix(migration): correct import path for DEFAULT_CATEGORIES
This commit is contained in:
Kenny 2026-01-16 15:36:15 -05:00 committed by GitHub
commit 903a1534a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -107,7 +107,7 @@ export function shouldDeleteAgentConfig(
config: Record<string, unknown>,
category: string
): boolean {
const { DEFAULT_CATEGORIES } = require("../tools/sisyphus-task/constants")
const { DEFAULT_CATEGORIES } = require("../tools/delegate-task/constants")
const defaults = DEFAULT_CATEGORIES[category]
if (!defaults) return false