Skip to content

Commit

Permalink
Fix TS errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Sep 16, 2021
1 parent e69c860 commit ae8350d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe('Error handling', () => {
testBed = await setupElasticsearchPage({ isReadOnlyMode: false });
});

const { component, exists, find } = testBed;
const { component, find } = testBed;
component.update();
expect(find('deprecationsPageLoadingError').text()).toContain(
'Upgrade Kibana to the same version as your Elasticsearch cluster. One or more nodes in the cluster is running a different version than Kibana.'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import React, { useEffect, useState, useCallback, useMemo } from 'react';
import uuid from 'uuid';
import { withRouter, RouteComponentProps } from 'react-router-dom';
import { EuiPageContent, EuiPageHeader, EuiSpacer, EuiCallOut, EuiEmptyPrompt } from '@elastic/eui';
import { EuiPageContent, EuiPageHeader, EuiSpacer, EuiCallOut } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import { FormattedMessage } from '@kbn/i18n/react';

Expand Down

0 comments on commit ae8350d

Please sign in to comment.