Skip to content

Commit

Permalink
remove non existant rating option
Browse files Browse the repository at this point in the history
  • Loading branch information
allgood committed Oct 14, 2024
1 parent cf1fd91 commit d7bab61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/services/TicketServices/UpdateTicketService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const UpdateTicketService = async ({
if (ticketTraking.ratingAt == null && !justClose) {
const ratingTxt =
ratingMessage?.trim() || "Por favor avalie nosso atendimento";
const bodyRatingMessage = `\u200e${ratingTxt}\n\n*Digite uma nota de 1 a 5*\n\nEnvie *\`!\`* para retornar ao atendimento`;
const bodyRatingMessage = `\u200e${ratingTxt}\n\n*Digite uma nota de 1 a 5*\n`;

if (ticket.channel === "whatsapp") {
await SendWhatsAppMessage({ body: bodyRatingMessage, ticket });
Expand Down

0 comments on commit d7bab61

Please sign in to comment.