fix undefined bug
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Rebecca-Chou 2022-03-04 17:08:52 +08:00
parent 2d9176256d
commit 51bb491277
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ export async function getExecNames() {
const client = new Client({ url }); const client = new Client({ url });
// position: name // position: name
let execMembers: { [name: string]: string }; const execMembers: { [name: string]: string } = {};
let formattedExec: string[]; let formattedExec: string[] = [];
try { try {
await client.bind("", ""); await client.bind("", "");