feat: remove useless host
Publish Metadata Agent Image / build-and-push-image (push) Successful in 2m41s
Publish Web Player Image / build-and-push-image (push) Successful in 1m7s

This commit is contained in:
Boris Cherepanov
2026-04-19 21:01:30 +03:00
parent 94d14e8fc8
commit 74d7b10386
+3 -3
View File
@@ -34,7 +34,7 @@ function App() {
const loadMe = async () => {
try {
const response = await fetch(`${apiBase}/api/me`, {
const response = await fetch(`/api/me`, {
credentials: 'include',
})
@@ -59,8 +59,8 @@ function App() {
void loadMe()
}, [apiBase, runWithoutAuth])
const loginUrl = `${apiBase}/api/login`
const logoutUrl = `${apiBase}/api/logout`
const loginUrl = `/api/login`
const logoutUrl = `/api/logout`
return (
<>