Skip to content

Commit

Permalink
Fix lint error that wasn't caught by precommit hook
Browse files Browse the repository at this point in the history
  • Loading branch information
eliperelman committed Dec 13, 2019
1 parent 915314e commit 5fc04ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/public/application/application_service.tsx
Expand Up @@ -56,7 +56,8 @@ interface StartDeps {
}

// Mount functions with two arguments are assumed to expect deprecated `context` object.
const isAppMountDeprecated = (mount: (...args: any[]) => any): mount is AppMountDeprecated => mount.length === 2;
const isAppMountDeprecated = (mount: (...args: any[]) => any): mount is AppMountDeprecated =>
mount.length === 2;
const filterAvailable = (map: Map<string, any>, capabilities: Capabilities) =>
new Map(
[...map].filter(
Expand Down

0 comments on commit 5fc04ce

Please sign in to comment.