Skip to content

Commit 76e4cdc

Browse files
authored
Format copilot harness source (#35365)
1 parent 1f5b202 commit 76e4cdc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

actions/setup/js/copilot_harness.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function isModelAvailableInReflectData(model, reflectData) {
175175
if (!reflectData || typeof reflectData !== "object") return false;
176176

177177
// TypeScript needs explicit 'in' check or cast before property access on narrowed object type
178-
const endpoints = 'endpoints' in reflectData && Array.isArray(reflectData.endpoints) ? reflectData.endpoints : [];
178+
const endpoints = "endpoints" in reflectData && Array.isArray(reflectData.endpoints) ? reflectData.endpoints : [];
179179
for (const endpoint of endpoints) {
180180
if (!endpoint || endpoint.configured !== true || !Array.isArray(endpoint.models)) {
181181
continue;

0 commit comments

Comments
 (0)