Skip to content

Commit eab653f

Browse files
committed
Remove unused code
1 parent 8f2f6e4 commit eab653f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Administration/Users/UsersList/UsersListTableItems.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ import React from 'react'
22
import PropTypes from 'prop-types'
33
import { FormattedDate } from 'react-intl'
44

5-
import { makeStyles, TableBody, TableCell, TableRow, Avatar } from '@material-ui/core'
5+
import { makeStyles, TableCell, TableRow, Avatar } from '@material-ui/core'
66
import { Skeleton } from '@material-ui/lab'
77

88
import { Edit as EditIcon, Delete as DeleteIcon } from '@material-ui/icons/'
99

1010
const UsersListTableItems = ({ users, rowsPerPage = 10, rowsExpected = 10 }) => {
11-
// const classes = useStyles()
12-
1311
// Count how many empty rows needs to be filled
1412
const usersVisible = users.length || rowsExpected
1513
const usersArrayExpected = Array.from({ length: usersVisible }).map(

0 commit comments

Comments
 (0)