We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2819b2d commit a669923Copy full SHA for a669923
packages/reva-api/modules/candidacy-menu/features/getMenuUrlBuilder.ts
@@ -2,9 +2,7 @@ export const menuUrlBuilder =
2
({ candidacyId }: { candidacyId: string }) =>
3
({ suffix }: { suffix: string }) => {
4
const baseUrl =
5
- process.env.ADMIN_REACT_BASE_URL ||
6
- process.env.BASE_URL ||
7
- "https://vae.gouv.fr";
+ process.env.ADMIN_REACT_BASE_URL || "https://vae.gouv.fr/admin2";
8
9
- return `${baseUrl}/admin2/candidacies/${candidacyId}/${suffix}`;
+ return `${baseUrl}/candidacies/${candidacyId}/${suffix}`;
10
};
0 commit comments