Fix linting

This commit is contained in:
Erik Larsson
2021-01-05 11:22:50 +01:00
parent 6ed2b47d60
commit 570884ece6
2 changed files with 3 additions and 2 deletions
@@ -23,10 +23,10 @@ import { PluginEndpointDiscovery } from '@backstage/backend-common';
const server = setupServer();
const mockBaseUrl = 'http://backstage:9191/i-am-a-mock-base';
const discovery: PluginEndpointDiscovery = {
async getBaseUrl(_pluginId) {
async getBaseUrl() {
return mockBaseUrl;
},
async getExternalBaseUrl(_pluginId) {
async getExternalBaseUrl() {
return mockBaseUrl;
},
};
@@ -21,6 +21,7 @@ import {
PluginEndpointDiscovery,
} from '@backstage/backend-common';
import { UserEntity } from '@backstage/catalog-model';
type UserQuery = {
annotations: Record<string, string>;
};