rem todos that are done

This commit is contained in:
Ean Milligan (Bastion) 2023-04-26 07:32:28 -04:00
parent 646d5f962a
commit e1b8ac48da
1 changed files with 2 additions and 2 deletions

View File

@ -61,13 +61,13 @@ const execute = async (bot: Bot, interaction: Interaction) => {
type: MessageComponentTypes.Button, type: MessageComponentTypes.Button,
label: 'Make Event Public', label: 'Make Event Public',
style: ButtonStyles.Primary, style: ButtonStyles.Primary,
customId: `${toggleWLStatusCustomId}${baseEditIdxPath}`, // TODO: add customId customId: `${toggleWLStatusCustomId}${baseEditIdxPath}`,
} }
: { : {
type: MessageComponentTypes.Button, type: MessageComponentTypes.Button,
label: 'Make Event Whitelisted', label: 'Make Event Whitelisted',
style: ButtonStyles.Primary, style: ButtonStyles.Primary,
customId: `${toggleWLStatusCustomId}${baseEditIdxPath}${pathIdxEnder}`, // TODO: add customId customId: `${toggleWLStatusCustomId}${baseEditIdxPath}${pathIdxEnder}`,
}, },
); );
} }