Skip to content

Commit

Permalink
fix: update incorrect import
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprobst committed Oct 17, 2024
1 parent f953d7b commit 6a0f4a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/item-form/WorkflowStepMainFormSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import { FormTextArea } from '@/lib/core/form/FormTextArea'
import { FormTextField } from '@/lib/core/form/FormTextField'
import { useI18n } from '@/lib/core/i18n/useI18n'

export interface WorkflowMainFormSectionProps {
export interface WorkflowStepMainFormSectionProps {
formFields: ItemFormFields
}

export function WorkflowMainFormSection(props: WorkflowMainFormSectionProps): JSX.Element {
export function WorkflowStepMainFormSection(props: WorkflowStepMainFormSectionProps): JSX.Element {
const { fields } = props.formFields

const { t } = useI18n<'authenticated' | 'common'>()
Expand Down

0 comments on commit 6a0f4a4

Please sign in to comment.