Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
dgieselaar committed Jan 23, 2022
1 parent 9d652b2 commit 0b590a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/apm/public/application/uxApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function UxApp() {
);
}

const uxRouter = createRouter([]);
const uxRouter = createRouter({});

export function UXAppRoot({
appMountParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/
import { i18n } from '@kbn/i18n';
import { Outlet, Route } from '@kbn/typed-react-router-config';
import { Outlet } from '@kbn/typed-react-router-config';
import * as t from 'io-ts';
import React from 'react';
import { toBooleanRt } from '@kbn/io-ts-utils';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ export const Example: Story<Args> = (args) => {
};
Example.args = {
children: <>test</>,
selectedTab: 'agent-configurations',
selectedTab: 'agent-configuration',
};

0 comments on commit 0b590a0

Please sign in to comment.