forked from FoundKeyGang/FoundKey
server: fix typing for skippedInstances query
This commit is contained in:
parent
873e21f090
commit
350f21d955
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ export async function skippedInstances(hosts: Array<Instance['host']>): Promise<
|
||||||
hosts.filter(host => !skipped.includes(host) && !host.includes(',')).join(','),
|
hosts.filter(host => !skipped.includes(host) && !host.includes(',')).join(','),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
.then(res => res.map(row => row.host)),
|
.then((res: Instance[]) => res.map(row => row.host)),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue