fix(gsd): cast milestone classification to string for type safety

This commit is contained in:
Tibsfox 2026-04-05 12:05:02 -07:00
parent 5cb04f54ca
commit db90607378

View file

@ -485,7 +485,7 @@ export function executeTriageResolutions(
// picks up the work naturally from its planning context.
const deferrable = loadAllCaptures(basePath).filter(
c => c.status === "resolved" && !c.executed &&
(c.classification === "defer" || c.classification === "milestone"),
(c.classification === "defer" || (c.classification as string) === "milestone"),
);
if (deferrable.length > 0) {
// Group captures that reference a specific milestone — create dirs as needed.