style: apply prettier formatting

This commit is contained in:
ejclaw
2026-04-09 22:50:21 +09:00
parent 5714348897
commit 7753ee46f0
7 changed files with 64 additions and 49 deletions

View File

@@ -86,7 +86,8 @@ function resolvePreferredWorkItemRole(
return null;
}
const inferredAgentType = inferAgentTypeFromServiceShadow(normalizedServiceId);
const inferredAgentType =
inferAgentTypeFromServiceShadow(normalizedServiceId);
return inferRoleFromServiceShadow(inferredAgentType, normalizedServiceId);
}
@@ -131,9 +132,7 @@ export function getOpenWorkItemFromDatabase(
normalizedServiceId,
preferredRole,
preferredRole,
) as
| StoredWorkItemRow
| undefined;
) as StoredWorkItemRow | undefined;
return row ? hydrateWorkItemRow(row) : undefined;
}