From dbb66972ebd987f60e10939bfb4493f87bbc73c3 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Tue, 26 Oct 2021 16:49:09 +0200 Subject: Quick commit with sort-of working WYSiWYG and moving chit --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/index.ts') diff --git a/src/index.ts b/src/index.ts index 79d5386..79c88d2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,7 +2,7 @@ import "Styles/index.css"; async function goToMain() { const i = document.getElementsByTagName("input")[0] - const res = await (await fetch("http://localhost:8000/getFridge.php?name=" + i.value)).text() + const res = await (await fetch("http://localhost:8001/getFridge.php?name=" + i.value)).text() sessionStorage.fridge = res; location.href = "/main.html" } -- cgit v1.3.1