diff --git a/plugins/bazaar-backend/src/service/standaloneServer.ts b/plugins/bazaar-backend/src/service/standaloneServer.ts index a865a9875d..a50e350f39 100644 --- a/plugins/bazaar-backend/src/service/standaloneServer.ts +++ b/plugins/bazaar-backend/src/service/standaloneServer.ts @@ -19,7 +19,7 @@ import { loadBackendConfig, useHotMemoize, } from '@backstage/backend-common'; -import { DefaultIdentityClient } from '@backstage/plugin-auth-node'; +import { IdentityApi } from '@backstage/plugin-auth-node'; import { Server } from 'http'; import { Logger } from 'winston'; import { createRouter } from './router'; @@ -55,7 +55,7 @@ export async function startStandaloneServer( logger, database: { getClient: async () => db }, config: config, - identity: {} as DefaultIdentityClient, + identity: {} as IdentityApi, }); let service = createServiceBuilder(module)