Adjust default origin URL to use /api/v3 prefix

This won't be the only URL that needs fixing, but it should make most of the web app work.
This commit is contained in:
Richard Bowman 2026-03-31 22:59:10 +01:00 committed by Julian Stirling
parent 9851485057
commit 93a2e87dac

View file

@ -10,7 +10,7 @@ function getOriginFromLocation() {
if (origin) {
return origin;
} else {
return url.origin;
return `${url.origin}/api/v3`;
}
}