Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasikas committed Apr 26, 2023
1 parent 3ec676f commit 95cc3c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/plugins/cases/public/components/description/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ import * as i18n from '../user_actions/translations';
import { useCasesContext } from '../cases_context/use_cases_context';
import { useLensDraftComment } from '../markdown_editor/plugins/lens/use_lens_draft_comment';
import { EditableMarkdown, ScrollableMarkdown } from '../markdown_editor';
import type { Case } from '../../containers/types';
import type { CaseUI } from '../../containers/types';
import type { OnUpdateFields } from '../case_view/types';
import { schema } from './schema';

const DESCRIPTION_ID = 'description';
export interface DescriptionProps {
caseData: Case;
caseData: CaseUI;
isLoadingDescription: boolean;
onUpdateField: ({ key, value, onSuccess, onError }: OnUpdateFields) => void;
}
Expand Down

0 comments on commit 95cc3c9

Please sign in to comment.