Skip to content

Commit b81e931

Browse files
committed
fix lint (remove unused theme prop)
1 parent fa4139e commit b81e931

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/components/showcase/TaskCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function TaskCard() {
1313
<Fade in timeout={700}>
1414
<Card
1515
data-mui-color-scheme="dark"
16-
sx={(theme) => ({
16+
sx={{
1717
minWidth: 280,
1818
maxWidth: 360,
1919
minHeight: 280,
@@ -23,7 +23,7 @@ export default function TaskCard() {
2323
background:
2424
'linear-gradient(180deg, var(--muidocs-palette-primary-600) 0%, var(--muidocs-palette-primary-700) 100%)',
2525
boxShadow: '0px 4px 8px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.04)',
26-
})}
26+
}}
2727
>
2828
<Box sx={{ display: 'flex', alignItems: 'center', gap: 0.8 }}>
2929
<ScheduleRounded fontSize="inherit" />

0 commit comments

Comments
 (0)