Skip to content

Commit 499c288

Browse files
committed
updated login page to use dev api
1 parent d0c7f9a commit 499c288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/login/+Page.client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function LoginForm() {
3737

3838
const submitForm = async () => {
3939
try {
40-
const login = await fetch("http://localhost:5500/v2/login", {
40+
const login = await fetch("https://dev.rockd.org/api/v2/login", {
4141
method: "POST",
4242
headers: { "Content-Type": "application/json" },
4343
body: JSON.stringify({
@@ -58,7 +58,7 @@ function LoginForm() {
5858
strabo_jwt: jParam,
5959
};
6060
const linkStrabo = await fetch(
61-
"http://localhost:5500/v2/link-strabospot",
61+
"https://dev.rockd.org/api/v2/link-strabospot",
6262
{
6363
method: "POST",
6464
headers: { "Content-Type": "application/json" },

0 commit comments

Comments
 (0)