Fixed fetch url

This commit is contained in:
Martin Berg Alstad 2023-01-22 00:08:20 +01:00
parent ad1e961de6
commit 8aa5be5435

View File

@ -83,7 +83,7 @@ const TruthTablePage: Component = () => {
if (exp !== "") { if (exp !== "") {
setError(null); setError(null);
setIsLoaded(false); setIsLoaded(false);
fetch(`https://api.martials.no/simplify-truths/simplify/table?exp=${ encodeURIComponent(exp) }&simplify=${ simplifyEnabled() } fetch(`https://api.martials.no/simplify-truths/do/simplify/table?exp=${ encodeURIComponent(exp) }&simplify=${ simplifyEnabled() }
&hide=${ hideValues().value }&sort=${ sortValues().value }`) &hide=${ hideValues().value }&sort=${ sortValues().value }`)
.then(res => res.json()) .then(res => res.json())
.then(res => setFetchResult(res)) .then(res => setFetchResult(res))