fix: remove asterisks for SMS

Philipp Burckhardt 2023-06-13 17:25:13 -04:00 zatwierdzone przez Travis Fischer
rodzic 9c41ea5607
commit a84b7b191c
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -51,7 +51,7 @@ export class HumanFeedbackMechanismTwilio extends HumanFeedbackMechanism {
): Promise<UserActions> {
message += '\n\n'
message += choices
.map((choice, idx) => `*${idx}* - ${UserActionMessages[choice]}`)
.map((choice, idx) => `${idx} - ${UserActionMessages[choice]}`)
.join('\n')
message += '\n\n'
message += 'Reply with the number of your choice.'