@@ -518,7 +518,7 @@ const PreviewBorderBox = styled("div")(({ theme , tokenName }) => {
518518
519519const StyledTableRow = styled ( TableRow ) ( ( { theme } ) => ( {
520520 "&:nth-child(odd)" : {
521- backgroundColor : theme . palette . background . default ,
521+ backgroundColor : theme . palette . background . default ,
522522 } ,
523523 "&:nth-child(even)" : {
524524 backgroundColor : theme . palette . background . secondary ,
@@ -541,7 +541,7 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
541541 borderRadius : "4px" ,
542542} ) ) ;
543543
544- const StyledHeaderCell = styled ( StyledTableCell ) ( ( { theme } ) => ( {
544+ const StyledHeaderCell = styled ( StyledTableCell ) ( ( ) => ( {
545545 fontWeight : 600 ,
546546} ) ) ;
547547
@@ -628,7 +628,7 @@ const ColorCode = () => {
628628 </ TableHead >
629629 < TableBody >
630630 { brandColors . map ( ( col ) => (
631- < StyledTableRow key = { col . tokenName } >
631+ < StyledTableRow key = { col . tokenName } >
632632 < StyledTableCell > { col . tokenName } </ StyledTableCell >
633633 < StyledTableCell > { col . name } </ StyledTableCell >
634634 < StyledTableCell > < CopyColor hex = { col . hex } /> </ StyledTableCell >
@@ -665,7 +665,7 @@ const ColorCode = () => {
665665 </ TableHead >
666666 < TableBody >
667667 { greyscaleColors . map ( ( col ) => (
668- < StyledTableRow key = { col . tokenName } >
668+ < StyledTableRow key = { col . tokenName } >
669669 < StyledTableCell > { col . tokenName } </ StyledTableCell >
670670 < StyledTableCell > { col . name } </ StyledTableCell >
671671 < StyledTableCell > < CopyColor hex = { col . hex } /> </ StyledTableCell >
@@ -830,7 +830,7 @@ const ColorCode = () => {
830830 </ TableHead >
831831 < TableBody >
832832 { borderColors . map ( ( col ) => (
833- < StyledTableRow key = { col . tokenName } >
833+ < StyledTableRow key = { col . tokenName } >
834834 < StyledTableCell > { col . tokenName } </ StyledTableCell >
835835 < StyledTableCell > { col . Alias_of } </ StyledTableCell >
836836 < StyledTableCell > < CopyColor hex = { col . hex } /> </ StyledTableCell >
0 commit comments