Skip to content

Commit d255ebe

Browse files
authored
Merge pull request #988 from devtron-labs/chore/redirection-for-helm-own
chore: redirection for helm own
2 parents 5ed7e51 + 9cba76e commit d255ebe

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/Common/Constants.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export const URLS = {
6969
LOGIN: '/login',
7070
LOGIN_SSO: '/login/sso',
7171
APP_LIST: 'list',
72-
APP: '/app',
7372
CREATE_JOB: 'create-job',
7473
GETTING_STARTED: 'getting-started',
7574
STACK_MANAGER_ABOUT: '/stack-manager/about',

src/Shared/Components/CICDHistory/ResourceConflictDeployDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const ResourceConflictDeployDialog = ({ appName, environmentName, handleClose }:
2424
appId,
2525
})
2626
setIsLoading(false)
27-
history.push(`${URLS.APP}/${appId}/details/${envId}`)
27+
history.push(`${URLS.APPLICATION_MANAGEMENT_APP}/${appId}/details/${envId}`)
2828
} catch (error) {
2929
showError(error)
3030
setIsLoading(false)

src/Shared/Components/CICDHistory/ResourceConflictDetailsModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const ResourceConflictDetailsModal = ({ appName, environmentName, handleClose }:
4343
appId,
4444
})
4545
setIsDeploying(false)
46-
history.push(`${URLS.APP}/${appId}/details/${envId}`)
46+
history.push(`${URLS.APPLICATION_MANAGEMENT_APP}/${appId}/details/${envId}`)
4747
} catch (error) {
4848
showError(error)
4949
setIsDeploying(false)

0 commit comments

Comments
 (0)