Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed Dec 4, 2023
1 parent 6a82d2a commit ec242e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { KibanaRenderContextProvider } from '@kbn/react-kibana-context-render';
import { Route, Router, Routes } from '@kbn/shared-ux-router';
import React from 'react';
import ReactDOM from 'react-dom';
import { DatasetQualityRoute, ObservablityLogExplorerMainRoute } from '../routes/main';
import { DatasetQualityRoute, ObservabilityLogExplorerMainRoute } from '../routes/main';
import {
ObservabilityLogExplorerAppMountParameters,
ObservabilityLogExplorerPluginStart,
Expand Down Expand Up @@ -70,7 +70,7 @@ export const ObservabilityLogExplorerApp = ({
<KbnUrlStateStorageFromRouterProvider>
<Router history={appParams.history}>
<Routes>
<Route path="/" exact={true} render={() => <ObservablityLogExplorerMainRoute />} />
<Route path="/" exact={true} render={() => <ObservabilityLogExplorerMainRoute />} />
<Route
path="/dataset-quality"
exact={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { noBreadcrumbs, useBreadcrumbs } from '../../utils/breadcrumbs';
import { useKbnUrlStateStorageFromRouterContext } from '../../utils/kbn_url_state_context';
import { useKibanaContextForPlugin } from '../../utils/use_kibana';

export const ObservablityLogExplorerMainRoute = () => {
export const ObservabilityLogExplorerMainRoute = () => {
const { services } = useKibanaContextForPlugin();
const { logExplorer, serverless, chrome, notifications, appParams } = services;
const { history } = appParams;
Expand Down

0 comments on commit ec242e6

Please sign in to comment.