Skip to content

Commit

Permalink
Merge pull request #4 from Elastic-AWP-Platform/lint_fixes
Browse files Browse the repository at this point in the history
fixed a few build errors after redoing yarn kbn bootstrap
  • Loading branch information
mitodrummer authored Nov 8, 2021
2 parents 828e018 + 07220ca commit 6cb5f92
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/session_view/public/application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ interface RenderAppProps {
const queryClient = new QueryClient();

export const renderApp = (props: RenderAppProps) => {
const { coreStart, depsServices, appMountParams, version, config } = props;
const { coreStart, depsServices, appMountParams, version } = props;

const { element, history } = appMountParams;

Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/session_view/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class SessionViewPlugin implements Plugin {
* Initialize SessionViewPlugin class properties (logger, etc) that is accessible
* through the initializerContext.
*/
constructor(private readonly initializerContext: PluginInitializerContext) {
constructor(initializerContext: PluginInitializerContext) {
this.logger = initializerContext.logger.get();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
*/

import { schema } from '@kbn/config-schema';
import uuid from 'uuid';
import { IRouter } from '../../../../../src/core/server';
import { INTERNAL_TEST_SAVED_OBJECT_ROUTE, TEST_SAVED_OBJECT } from '../../common/constants';

Expand Down

0 comments on commit 6cb5f92

Please sign in to comment.