Skip to content

Commit

Permalink
remove use of non-existent i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Nov 2, 2022
1 parent 0e2623c commit 002ed19
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import React from 'react';
import { EuiEmptyPrompt, EuiText } from '@elastic/eui';
import { EuiEmptyPrompt } from '@elastic/eui';
import type { FunctionComponent } from 'react';
import { UploadFile } from '../../upload_file';
import { useFilePickerContext } from '../context';
Expand All @@ -24,11 +24,6 @@ export const EmptyPrompt: FunctionComponent<Props> = ({ kind, multiple }) => {
<EuiEmptyPrompt
data-test-subj="emptyPrompt"
title={<h3>{i18nTexts.emptyStatePrompt}</h3>}
body={
<EuiText color="subdued" size="s">
<p>{i18nTexts.emptyStatePromptSubtitle}</p>
</EuiText>
}
titleSize="s"
actions={[
// TODO: We can remove this once the entire modal is an upload area
Expand Down

0 comments on commit 002ed19

Please sign in to comment.