Index: pages/dashboard/admin/+Page.tsx
===================================================================
--- pages/dashboard/admin/+Page.tsx	(revision d07d68c7500082e36ef6253479f265f924ccb1f4)
+++ pages/dashboard/admin/+Page.tsx	(revision 4f2900a42af738556efd5fd79be1f104639d6108)
@@ -41,5 +41,4 @@
         buildName: string
     }>({open: false, buildId: null, buildName: ''});
-    const [rejectReason, setRejectReason] = useState('');
     const [approvalLoading, setApprovalLoading] = useState(false);
 
@@ -76,5 +75,4 @@
     const openBuildApproval = (buildId: number, buildName: string) => {
         setBuildApprovalDialog({open: true, buildId, buildName});
-        setRejectReason('');
     };
 
@@ -93,21 +91,21 @@
     };
 
-    const handleRejectBuild = async () => {
-        if (!buildApprovalDialog.buildId || !rejectReason.trim()) return;
-        setApprovalLoading(true);
-        try {
-            await onSetBuildApprovalStatus({
-                buildId: buildApprovalDialog.buildId,
-                isApproved: false,
-            });
-            setBuildApprovalDialog({open: false, buildId: null, buildName: ''});
-            loadData();
-        } catch (e) {
-            console.error("Reject error:", e); // 🔧 add this
-            alert("Reject failed");
-        } finally {
-            setApprovalLoading(false);
-        }
-    };
+    // const handleRejectBuild = async () => {
+    //     if (!buildApprovalDialog.buildId || !rejectReason.trim()) return;
+    //     setApprovalLoading(true);
+    //     try {
+    //         await onSetBuildApprovalStatus({
+    //             buildId: buildApprovalDialog.buildId,
+    //             isApproved: false,
+    //         });
+    //         setBuildApprovalDialog({open: false, buildId: null, buildName: ''});
+    //         loadData();
+    //     } catch (e) {
+    //         console.error("Reject error:", e); // 🔧 add this
+    //         alert("Reject failed");
+    //     } finally {
+    //         setApprovalLoading(false);
+    //     }
+    // };
 
     const openSuggestionReview = (id: number, action: 'approved' | 'rejected') => {
@@ -456,14 +454,14 @@
                         Build ID: {buildApprovalDialog.buildId}
                     </Typography>
-                    <TextField
-                        fullWidth
-                        multiline
-                        rows={2}
-                        label="Reject reason (optional)"
-                        value={rejectReason}
-                        onChange={(e) => setRejectReason(e.target.value)}
-                        placeholder="Why reject this build?"
-                        sx={{mt: 1}}
-                    />
+                    {/*<TextField*/}
+                    {/*    fullWidth*/}
+                    {/*    multiline*/}
+                    {/*    rows={2}*/}
+                    {/*    label="Reject reason (optional)"*/}
+                    {/*    value={rejectReason}*/}
+                    {/*    onChange={(e) => setRejectReason(e.target.value)}*/}
+                    {/*    placeholder="Why reject this build?"*/}
+                    {/*    sx={{mt: 1}}*/}
+                    {/*/>*/}
                 </DialogContent>
                 <DialogActions>
@@ -474,12 +472,12 @@
                         Cancel
                     </Button>
-                    <Button
-                        onClick={handleRejectBuild}
-                        variant="outlined"
-                        color="error"
-                        disabled={approvalLoading || !rejectReason.trim()}
-                    >
-                        {approvalLoading ? <CircularProgress size={20}/> : 'Reject'}
-                    </Button>
+                    {/*<Button*/}
+                    {/*    onClick={handleRejectBuild}*/}
+                    {/*    variant="outlined"*/}
+                    {/*    color="error"*/}
+                    {/*    disabled={approvalLoading || !rejectReason.trim()}*/}
+                    {/*>*/}
+                    {/*    {approvalLoading ? <CircularProgress size={20}/> : 'Reject'}*/}
+                    {/*</Button>*/}
                     <Button
                         onClick={handleApproveBuild}
