Skip to content
Snippets Groups Projects
Commit ce3c1c86 authored by Greg Fodor's avatar Greg Fodor
Browse files

Fix issue with URL

parent 975b22a9
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ class HubCreatePanel extends Component {
createUrl = `https://dev.reticulum.io${createUrl}`;
}
const res = await fetch("https://dev.reticulum.io/api/v1/hubs", {
const res = await fetch(createUrl, {
body: JSON.stringify(payload),
headers: { "content-type": "application/json" },
method: "POST"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment