Skip to content

Commit

Permalink
fix: use endpoint.url for redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
bodom0015 committed Dec 14, 2023
1 parent 923f949 commit aab4de9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/services/openapi/v1/core/OpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type Config = {

export const OpenAPI: Config = {
BASE: '/api/v1',
VERSION: '2.1.1',
VERSION: '2.1.2',
WITH_CREDENTIALS: false,
TOKEN: undefined,
USERNAME: undefined,
Expand Down
2 changes: 1 addition & 1 deletion src/views/my-apps/MyApps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import ReactGA from "react-ga";
import './MyApps.css';

const navigate = (stk: V1.Stack, ep: any) => {
window.open(`${ep.protocol}://${ep.host}`, '_blank');
window.open(`${ep.url}`, '_blank');
}

const sortBy = (s1: V1.Stack, s2: V1.Stack) => {
Expand Down

0 comments on commit aab4de9

Please sign in to comment.