diff --git a/src/chrome/RatingButton.tsx b/src/chrome/RatingButton.tsx index 519b13719..98009bded 100644 --- a/src/chrome/RatingButton.tsx +++ b/src/chrome/RatingButton.tsx @@ -90,7 +90,7 @@ class FeedbackComponent extends Component< this.setState({rating: newRating, nextAction: nextAction}); this.props.submitRating(newRating); if (nextAction === 'finished') { - setTimeout(this.props.close, 1000); + setTimeout(this.props.close, 1500); } } onCommentSubmitted(comment: string) { @@ -197,7 +197,7 @@ class FeedbackComponent extends Component< ]; break; case 'finished': - body = []; + body = [Thanks!]; break; default: { console.error('Illegal state: nextAction: ' + this.state.nextAction);