Skip to content

Commit

Permalink
Merge branch 'feat/patch-dt' of github.com:devtron-labs/devtron-fe-co…
Browse files Browse the repository at this point in the history
…mmon-lib into feat/cm-secret-patch-dry-run
  • Loading branch information
RohitRaj011 committed Nov 29, 2024
2 parents 310e5bf + 284495f commit b831f31
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ export const getDeploymentManifest = async (
valuesAndManifestFlag: ValuesAndManifestFlagDTO.MANIFEST,
}

return post<ResolvedDeploymentTemplateDTO>(ROUTES.APP_TEMPLATE_DATA, payload, { signal: abortSignal })
const response = await post<ResolvedDeploymentTemplateDTO>(ROUTES.APP_TEMPLATE_DATA, payload, {
signal: abortSignal,
})

return response
} catch (error) {
if (!getIsRequestAborted(error)) {
showError(error)
Expand Down

0 comments on commit b831f31

Please sign in to comment.