Skip to content

Commit

Permalink
fix: Making field prop optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Shivam-Gu authored and lordrip committed Mar 8, 2024
1 parent bf5a7f2 commit 0a75e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wrapField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export type WrapFieldProps = {
showInlineError?: boolean;
description?: React.ReactNode;
deprecated?: boolean;
field: unknown;
field?: unknown;
} & Omit<FormGroupProps, 'onChange' | 'fieldId'>;

export default function wrapField(
Expand Down

0 comments on commit 0a75e73

Please sign in to comment.