Skip to content

Commit

Permalink
chore: refactor deprecated mu api
Browse files Browse the repository at this point in the history
  • Loading branch information
dominickolbe committed Sep 17, 2021
1 parent 9a9762e commit d6cfde3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/coins-frontend/src/components/CoinsList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const CoinsList = (props: {
</List>
</Grid>
) : (
<Grid item xs={12} justify="center" container>
<Grid item xs={12} justifyContent="center" container>
<Typography variant="subtitle2">no entries found.</Typography>
</Grid>
)}
Expand Down
4 changes: 2 additions & 2 deletions packages/coins-frontend/src/routes/Coins/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const Coins = () => {
/>
</Grid>
{filteredItems.length > itemsPerPage && (
<Grid item xs={12} justify="center" container>
<Grid item xs={12} justifyContent="center" container>
<Pagination
page={page}
count={pageTotal}
Expand All @@ -95,7 +95,7 @@ const Coins = () => {
)}
</>
) : (
<Grid item xs={12} justify="center" container>
<Grid item xs={12} justifyContent="center" container>
<Typography variant="subtitle2">no entries yet.</Typography>
</Grid>
)}
Expand Down

0 comments on commit d6cfde3

Please sign in to comment.