fixed the build issue
All checks were successful
Beta CI/CD Pipeline / build-and-test (push) Successful in 48s
Beta CI/CD Pipeline / deploy-beta (push) Successful in 6s

This commit is contained in:
vickytechkey 2026-08-13 10:20:20 +05:30
parent 120fdcc69a
commit a91b153325

View file

@ -2368,6 +2368,7 @@ export default function App() {
<th>Customer</th> <th>Customer</th>
<th>Reason Given</th> <th>Reason Given</th>
<th>Status</th> <th>Status</th>
<th>Actions</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -2384,6 +2385,24 @@ export default function App() {
<td> <td>
<span className="badge badge-warning">{r.status}</span> <span className="badge badge-warning">{r.status}</span>
</td> </td>
<td>
<div style={{ display: 'flex', gap: '0.5rem' }}>
<button
className="btn btn-primary"
style={{ padding: '0.3rem 0.6rem', fontSize: '0.8rem' }}
onClick={() => handleReturnAction(r.id, 'Approved')}
>
Approve
</button>
<button
className="btn btn-outline-dark"
style={{ padding: '0.3rem 0.6rem', fontSize: '0.8rem', borderColor: 'var(--error)', color: 'var(--error)' }}
onClick={() => handleReturnAction(r.id, 'Rejected')}
>
Reject
</button>
</div>
</td>
</tr> </tr>
))} ))}
</tbody> </tbody>