Skip to content

Commit 02f4093

Browse files
committed
[WIP] test CI
1 parent 373ae04 commit 02f4093

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/mui-utils/src/resolveProps/resolveProps.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ export default function resolveProps<
1111
slots?: Record<string, unknown>;
1212
slotProps?: Record<string, unknown>;
1313
} & Record<string, unknown>,
14-
>(defaultProps: T, props: T) {
14+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
15+
>(defaultProps: T, props: T, mergeClassNameAndStyle: boolean = false) {
1516
const output = { ...props };
1617

1718
for (const key in defaultProps) {

0 commit comments

Comments
 (0)