Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sjschlapbach committed Aug 16, 2024
1 parent 9702bf9 commit 3b9e095
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/design-system/src/forms/FormikTextareaField.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useField } from 'formik'
import React from 'react'
import TextaraeField from './TextareaField'
import TextareaField from './TextareaField'

interface FormikTextareaFieldProps {
id?: string
Expand Down Expand Up @@ -92,7 +92,7 @@ export function FormikTextareaField({

if (name) {
return (
<TextaraeField
<TextareaField
id={id}
data={data}
label={label}
Expand All @@ -113,7 +113,7 @@ export function FormikTextareaField({
)
} else {
return (
<TextaraeField
<TextareaField
id={id}
data={data}
value={value!}
Expand Down

0 comments on commit 3b9e095

Please sign in to comment.