Skip to content

Commit

Permalink
fix: update typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mgadewoll committed Feb 5, 2025
1 parent 8fa75be commit 929d5c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eui/src/components/inline_edit/inline_edit_form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export type EuiInlineEditCommonProps = Omit<
* Initial inline edit text value
*/
defaultValue: string;
onCancel?: (perviousValue: string) => void;
onCancel?: (previousValue: string) => void;
},
{
/**
Expand All @@ -110,7 +110,7 @@ export type EuiInlineEditCommonProps = Omit<
/**
* Callback required to reset `value` to the previous read mode text value.
*/
onCancel: (perviousValue: string) => void;
onCancel: (previousValue: string) => void;
}
>;

Expand Down

0 comments on commit 929d5c6

Please sign in to comment.