From 901bd25148bcc19db3d140611f37a4c69f840b50 Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Sun, 22 Jan 2023 16:36:25 -0500 Subject: [PATCH] fix endpoint --- public/js/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/api.js b/public/js/api.js index c0ae980..371ecf3 100644 --- a/public/js/api.js +++ b/public/js/api.js @@ -1,4 +1,4 @@ -const endpoint = 'http://localhost:8080/api' +const endpoint = 'https://xssbook.com/api' const request = async (url, body, method) => { if (method === undefined) method = 'POST'