Change the order of exec name

This commit is contained in:
Rebecca-Chou 2022-02-14 00:11:08 +08:00
parent 3a7ec04f4e
commit 8b8432cf76
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,8 @@ export async function getExecNames() {
formattedExec = execMembers.map(
(member) =>
`0${execPositions[member.position].order}-
${member.name.split(" ")[1].toLowerCase()}-
${member.name.split(" ")[0].toLowerCase()}`
${member.name.split(" ")[0].toLowerCase()}-
${member.name.split(" ")[1].toLowerCase()}`
);
} finally {
await client.unbind();