Skip to content

Commit

Permalink
Merge branch 'main' into searchBarRedesign
Browse files Browse the repository at this point in the history
  • Loading branch information
thuypham03 authored Oct 22, 2023
2 parents c2c28ef + 7ee33ff commit 1e780e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/AdminPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const AdminPage = (): ReactElement => {
</Grid>
<Grid item xs={12} sm={12}>
<Typography variant="h3">
<strong>Pending Reviews</strong>
<strong>Pending Reviews ({pendingData.length})</strong>
</Typography>
<Grid container item spacing={3}>
{sortReviews(pendingData, 'date').map((review, index) => (
Expand All @@ -98,7 +98,7 @@ const AdminPage = (): ReactElement => {

<Grid item xs={12} sm={12}>
<Typography variant="h3">
<strong>Declined Reviews</strong>
<strong>Declined Reviews ({declinedData.length})</strong>
</Typography>
<Grid container item spacing={3}>
{sortReviews(declinedData, 'date').map((review, index) => (
Expand Down

0 comments on commit 1e780e4

Please sign in to comment.