Skip to content

Commit 9aaa52e

Browse files
committed
Fixed typo
1 parent a843b63 commit 9aaa52e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/plugins/home/public/application/components/solutions_section/solutions_section.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import { SolutionPanel } from './solution_panel';
2525
import { FeatureCatalogueEntry, FeatureCatalogueSolution } from '../../../';
2626

2727
const sortByOrder = (
28-
{ order: orderA = 0 }: FeatureCatalogueSolution,
29-
{ order: orderB = 0 }: FeatureCatalogueSolution
28+
{ order: orderA = 0 }: FeatureCatalogueSolution | FeatureCatalogueEntry,
29+
{ order: orderB = 0 }: FeatureCatalogueSolution | FeatureCatalogueEntry
3030
) => orderA - orderB;
3131

3232
interface Props {

src/plugins/kibana_overview/public/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class KibanaOverviewPlugin
109109
defaultMessage: 'Search and find insights.',
110110
}),
111111
i18n.translate('kibanaOverview.kibana.appDescription3', {
112-
defaultMessage: 'Design pixel-perfect presentation.',
112+
defaultMessage: 'Design pixel-perfect presentations.',
113113
}),
114114
i18n.translate('kibanaOverview.kibana.appDescription4', {
115115
defaultMessage: 'Plot geographic data.',

0 commit comments

Comments
 (0)