debian-image-builder-frontend/src/Utilities/path.js
Sanne Raymaekers 7df6ff7df3 src/App.js: Remove obsolotete APP_NAVIGATION listener
v6 of react-router-dom is now supported everywhere, and leaving the
event listener can cause navigation bugs.

See gkarat/ocp-advisor-frontend#101 as an example.
2023-08-01 10:35:00 +02:00

5 lines
139 B
JavaScript

function resolveRelPath(path = '') {
return `/insights/image-builder${path.length > 0 ? `/${path}` : ''}`;
}
export { resolveRelPath };