diff --git a/packages/plugins/flyte-api/package.json b/packages/plugins/flyte-api/package.json index 1f1be13bd..a88d0a0ea 100644 --- a/packages/plugins/flyte-api/package.json +++ b/packages/plugins/flyte-api/package.json @@ -1,6 +1,6 @@ { "name": "@flyteconsole/flyte-api", - "version": "0.0.1", + "version": "0.0.2-rc1", "description": "FlyteConsole plugin to allow access FlyteAPI", "main": "./dist/index.js", "module": "./lib/esm/index.js", diff --git a/packages/plugins/flyte-api/src/ApiProvider/login.ts b/packages/plugins/flyte-api/src/ApiProvider/login.ts index a67ca4ce2..f0c70b943 100644 --- a/packages/plugins/flyte-api/src/ApiProvider/login.ts +++ b/packages/plugins/flyte-api/src/ApiProvider/login.ts @@ -18,5 +18,5 @@ export const defaultLoginStatus: LoginStatus = { */ export function getLoginUrl(adminUrl?: string, redirectUrl: string = window.location.href) { const baseUrl = getEndpointUrl(RawEndpoint.Login, adminUrl); - return `${baseUrl}?$redirect_url=${redirectUrl}`; + return `${baseUrl}?redirect_url=${redirectUrl}`; }