We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f64ea6 commit 7d5ab31Copy full SHA for 7d5ab31
web-ui/src/pages/PulseReportPage.jsx
@@ -535,19 +535,14 @@ const PulseReportPage = () => {
535
const pieLabelToSentiment = (label) => {
536
switch(label.toLowerCase()) {
537
case "verydissatisfied":
538
- //return <SentimentVeryDissatisfied />;
539
return "😦";
540
case "dissatisfied":
541
- //return <SentimentDissatisfied />;
542
return "🙁";
543
case "neutral":
544
- //return <SentimentNeutral />;
545
return "😐";
546
case "satisfied":
547
- //return <SentimentSatisfied />;
548
return "🙂";
549
case "verysatisfied":
550
- //return <SentimentVerySatisfied />;
551
return "😀";
552
}
553
return "ERROR";
0 commit comments