diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2021-10-26 16:49:09 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2021-10-26 16:49:09 +0200 |
| commit | dbb66972ebd987f60e10939bfb4493f87bbc73c3 (patch) | |
| tree | f951d36871d12089775e79a57c73855c21a2e72e /src/index.ts | |
| parent | 55d0e202677253ecf893bd52649871f10b52d3de (diff) | |
| download | isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.tar.gz isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.tar.zst isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.zip | |
Quick commit with sort-of working WYSiWYG and moving chit
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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" } |
