We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd42c8e commit 1aca5b0Copy full SHA for 1aca5b0
2 files changed
packages/ra-ui-materialui/src/button/CloneButton.tsx
@@ -78,7 +78,7 @@ interface Props {
78
scrollToTop?: boolean;
79
}
80
81
-export type CloneButtonProps = Props & ButtonProps;
+export type CloneButtonProps = Props & ButtonProps<typeof LinkBase>;
82
83
export default memo(CloneButton);
84
packages/ra-ui-materialui/src/button/ListButton.tsx
@@ -115,7 +115,7 @@ interface Props {
115
116
117
118
-export type ListButtonProps = Props & ButtonProps;
+export type ListButtonProps = Props & ButtonProps<typeof LinkBase>;
119
120
const PREFIX = 'RaListButton';
121
0 commit comments