[frontend]: Ignore 'within KM' if <=0

This commit is contained in:
2025-03-30 17:21:39 +01:00
parent 25acf830c3
commit cf1ff74f9b

View File

@ -137,6 +137,10 @@ function App() {
}
const fetchData = async (enabledSources, numberInputValue) => {
if (numberInputValue <= 0) {
numberInputValue = undefined;
}
setLoading(true);
try {
const transientTypes = [];