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

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