web: remove instance override warning, use custom api right away

This commit is contained in:
wukko
2024-11-18 16:32:33 +06:00
parent 2b2bc57331
commit d8348dfa1c
5 changed files with 1 additions and 86 deletions

View File

@@ -10,7 +10,7 @@ export const currentApiURL = () => {
return new URL(customInstanceURL).origin;
}
if (env.DEFAULT_API && processingSettings.allowDefaultOverride) {
if (env.DEFAULT_API) {
return new URL(env.DEFAULT_API).origin;
}