fix(gsd): cast milestone classification to string for type safety
This commit is contained in:
parent
5cb04f54ca
commit
db90607378
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue