diff --git a/lib/team.ts b/lib/team.ts index a56d2b75..e7b8c788 100644 --- a/lib/team.ts +++ b/lib/team.ts @@ -57,6 +57,8 @@ export async function getExecNames() { item1.order.localeCompare(item2.order) ); + console.log(execMembers); + formattedExec = execMembers.map( (member) => `0${member.order}- @@ -67,6 +69,8 @@ export async function getExecNames() { await client.unbind(); } + console.log(formattedExec); + return formattedExec; }