Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix typo in FormWithRedirectRenderProps type #6082

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ra-core/src/form/FormWithRedirect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export type FormWithRedirectProps = FormWithRedirectOwnProps &

export type FormWithRedirectRenderProps = Omit<
FormViewProps,
'chilren' | 'render' | 'setRedirect'
'children' | 'render' | 'setRedirect'
>;
export type FormWithRedirectRender = (
props: FormWithRedirectRenderProps
Expand Down
2 changes: 2 additions & 0 deletions packages/ra-ui-materialui/src/form/TabbedFormView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
cloneElement,
isValidElement,
ReactElement,
ReactNode,
useState,
} from 'react';
import PropTypes from 'prop-types';
Expand Down Expand Up @@ -183,6 +184,7 @@ TabbedFormView.defaultProps = {

export interface TabbedFormViewProps extends FormWithRedirectRenderProps {
basePath?: string;
children: ReactNode;
classes?: ClassesOverride<typeof useTabbedFormViewStyles>;
className?: string;
margin?: 'none' | 'normal' | 'dense';
Expand Down