Skip to content

Commit

Permalink
fix: 🐛 Exports DynamicInputsProps
Browse files Browse the repository at this point in the history
  • Loading branch information
aviemet committed Mar 25, 2023
1 parent 28355c1 commit 07c669d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DynamicInputs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { get, set } from 'lodash'
import NestedFields, { useNestedAttribute } from './NestedFields'
import { NestedObject } from './useInertiaForm'

interface DynamicInputsProps {
export interface DynamicInputsProps {
children: React.ReactNode
model?: string
emptyData: Record<string, unknown>
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ export {
} from './Form'
export { default as NestedFields, type NestedFieldsProps } from './NestedFields'
export { Input, Submit } from './Inputs'
export { default as DynamicInputs } from './DynamicInputs'
export { default as DynamicInputs, type DynamicInputsProps } from './DynamicInputs'

0 comments on commit 07c669d

Please sign in to comment.