Index: pages/dashboard/admin/+Page.tsx
===================================================================
--- pages/dashboard/admin/+Page.tsx	(revision 1ac9ee4c292344780bd23707d9be69481891c46a)
+++ pages/dashboard/admin/+Page.tsx	(revision 8a7f936ef2c6040183ae33f4b63947eecf8bf3b2)
@@ -49,5 +49,5 @@
     const openSuggestionReview = (id: number, action: 'approved' | 'rejected') => {
         setSuggestionDialog({ open: true, id, action });
-        setAdminComment(action === 'approved' ? "Approved by admin." : "Rejected: ");
+        setAdminComment(action === 'approved' ? "" : "");
     };
 
@@ -123,5 +123,5 @@
                                                         </a>
                                                     </TableCell>
-                                                    <TableCell>{sug.componentType}</TableCell>
+                                                    <TableCell>{sug.componentType.toUpperCase()}</TableCell>
                                                     <TableCell>{sug.userId}</TableCell>
                                                     <TableCell align="right">
@@ -207,5 +207,5 @@
 
             <Dialog open={suggestionDialog.open} onClose={() => setSuggestionDialog({...suggestionDialog, open: false})}>
-                <DialogTitle>Review Suggestion</DialogTitle>
+                <DialogTitle>Review Component Suggestion</DialogTitle>
                 <DialogContent>
                     <Typography gutterBottom>Status: <b>{suggestionDialog.action.toUpperCase()}</b></Typography>
