We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4563d02 commit 3e217b5Copy full SHA for 3e217b5
react_main/src/components/RapSheet.jsx
@@ -236,6 +236,16 @@ function VerdictDialog({
236
<Typography variant="body2" color="textSecondary">
237
This report was reviewed and dismissed with no violation found.
238
</Typography>
239
+ {report.finalRuling?.notes && (
240
+ <Box sx={{ mt: 1.5 }}>
241
+ <Typography variant="caption" color="textSecondary">
242
+ Notes
243
+ </Typography>
244
+ <Typography variant="body2" sx={{ whiteSpace: "pre-wrap" }}>
245
+ {report.finalRuling.notes}
246
247
+ </Box>
248
+ )}
249
</Box>
250
</>
251
)}
0 commit comments