@@ -518,7 +518,7 @@ const PreviewBorderBox = styled("div")(({ theme , tokenName }) => {
518
518
519
519
const StyledTableRow = styled ( TableRow ) ( ( { theme } ) => ( {
520
520
"&:nth-child(odd)" : {
521
- backgroundColor : theme . palette . background . default ,
521
+ backgroundColor : theme . palette . background . default ,
522
522
} ,
523
523
"&:nth-child(even)" : {
524
524
backgroundColor : theme . palette . background . secondary ,
@@ -541,7 +541,7 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
541
541
borderRadius : "4px" ,
542
542
} ) ) ;
543
543
544
- const StyledHeaderCell = styled ( StyledTableCell ) ( ( { theme } ) => ( {
544
+ const StyledHeaderCell = styled ( StyledTableCell ) ( ( ) => ( {
545
545
fontWeight : 600 ,
546
546
} ) ) ;
547
547
@@ -628,7 +628,7 @@ const ColorCode = () => {
628
628
</ TableHead >
629
629
< TableBody >
630
630
{ brandColors . map ( ( col ) => (
631
- < StyledTableRow key = { col . tokenName } >
631
+ < StyledTableRow key = { col . tokenName } >
632
632
< StyledTableCell > { col . tokenName } </ StyledTableCell >
633
633
< StyledTableCell > { col . name } </ StyledTableCell >
634
634
< StyledTableCell > < CopyColor hex = { col . hex } /> </ StyledTableCell >
@@ -665,7 +665,7 @@ const ColorCode = () => {
665
665
</ TableHead >
666
666
< TableBody >
667
667
{ greyscaleColors . map ( ( col ) => (
668
- < StyledTableRow key = { col . tokenName } >
668
+ < StyledTableRow key = { col . tokenName } >
669
669
< StyledTableCell > { col . tokenName } </ StyledTableCell >
670
670
< StyledTableCell > { col . name } </ StyledTableCell >
671
671
< StyledTableCell > < CopyColor hex = { col . hex } /> </ StyledTableCell >
@@ -830,7 +830,7 @@ const ColorCode = () => {
830
830
</ TableHead >
831
831
< TableBody >
832
832
{ borderColors . map ( ( col ) => (
833
- < StyledTableRow key = { col . tokenName } >
833
+ < StyledTableRow key = { col . tokenName } >
834
834
< StyledTableCell > { col . tokenName } </ StyledTableCell >
835
835
< StyledTableCell > { col . Alias_of } </ StyledTableCell >
836
836
< StyledTableCell > < CopyColor hex = { col . hex } /> </ StyledTableCell >
0 commit comments