Skip to content

Commit

Permalink
Change feedback log type to user satisfaction
Browse files Browse the repository at this point in the history
  • Loading branch information
jamdelion committed Nov 19, 2024
1 parent 98fce26 commit cc6c573
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const feedbackTypeIcon = (type: FeedbackType): FeedbackTypeIcon => {
title: "Unhelpful (help text)",
};
case "component":
return { icon: <RateReviewIcon />, title: "From feedback component" };
return { icon: <RateReviewIcon />, title: "User satisfaction" };
default:
return { icon: <RuleIcon />, title: "Inaccuracy" };
}
Expand Down Expand Up @@ -155,7 +155,7 @@ export const CollapsibleRow: React.FC<CollapsibleRowProps> = (item) => {
<TableCell>
{format(new Date(item.createdAt), "dd/MM/yy hh:mm:ss")}
</TableCell>
<TableCell sx={{ textAlign: "center" }}>{feedbackScore}</TableCell>
<TableCell>{feedbackScore}</TableCell>
<TableCell>{commentSummary}</TableCell>
<TableCell sx={{ textAlign: "right" }}>
<IconButton
Expand Down

0 comments on commit cc6c573

Please sign in to comment.