mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
chore: enable no-unused vars (#2181)
This commit is contained in:
@@ -2,7 +2,7 @@ import { styled, textEllipsis } from '../../styles';
|
||||
import type { TableCellProps } from './interface';
|
||||
|
||||
export const StyledTable = styled('table')<{ tableLayout: 'auto' | 'fixed' }>(
|
||||
({ theme, tableLayout }) => {
|
||||
({ tableLayout }) => {
|
||||
return {
|
||||
fontSize: 'var(--affine-font-base)',
|
||||
color: 'var(--affine-text-primary-color)',
|
||||
@@ -53,7 +53,7 @@ export const StyledTableHead = styled('thead')(() => {
|
||||
};
|
||||
});
|
||||
|
||||
export const StyledTableRow = styled('tr')(({ theme }) => {
|
||||
export const StyledTableRow = styled('tr')(() => {
|
||||
return {
|
||||
td: {
|
||||
transition: 'background .15s',
|
||||
|
||||
Reference in New Issue
Block a user