Fix fetch URL in publishActivityLog
cgen-3235f2c4dd84463ea5ea9bcd71719778
This commit is contained in:
parent
dd76c5bcdf
commit
9de9248851
1 changed files with 1 additions and 1 deletions
|
|
@ -221,7 +221,7 @@ export const aethexCollabService = {
|
|||
target_project_id?: string | null;
|
||||
metadata?: any;
|
||||
}) {
|
||||
const resp = await fetch("/api/activity/publish", {
|
||||
const resp = await fetch(`${API_BASE}/api/activity/publish`, {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify(params),
|
||||
|
|
|
|||
Loading…
Reference in a new issue