Skip to content

Commit 67ead30

Browse files
authored
Update README.md
1 parent b120376 commit 67ead30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,10 @@ You can send a message to customers right after closing a ticket to ask about th
402402
|WAITING|Set when an agent sends a customer feedback request message.|
403403
|CONFIRMED|Set when a customer sends a response.|
404404
405-
When a customer replies to the message, their score and comment for the ticket are sent to Sendbird server by calling the `Ticket.submitFeedback()` method. Then, the state of the confirmation request message is changed to `CONFIRMED`.
405+
When a customer replies to the message, their score and comment for the ticket are sent to Sendbird server by calling the `ticket.submitFeedback()` method. Then, the state of the confirmation request message is changed to `CONFIRMED`.
406406
407407
```javascript
408-
Ticket.submitFeedback(USER_MESSAGE, SCORE, COMMENT, (ticket, error) => {
408+
ticket.submitFeedback(USER_MESSAGE, SCORE, COMMENT, (ticket, error) => {
409409
if (error) throw error;
410410
});
411411
```

0 commit comments

Comments
 (0)