1 Commits

Author SHA1 Message Date
Boris Cherepanov 74d7b10386 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
2026-04-19 21:01:30 +03:00
+3 -3
View File
@@ -34,7 +34,7 @@ function App() {
const loadMe = async () => { const loadMe = async () => {
try { try {
const response = await fetch(`${apiBase}/api/me`, { const response = await fetch(`/api/me`, {
credentials: 'include', credentials: 'include',
}) })
@@ -59,8 +59,8 @@ function App() {
void loadMe() void loadMe()
}, [apiBase, runWithoutAuth]) }, [apiBase, runWithoutAuth])
const loginUrl = `${apiBase}/api/login` const loginUrl = `/api/login`
const logoutUrl = `${apiBase}/api/logout` const logoutUrl = `/api/logout`
return ( return (
<> <>