feat: update lake water data and optimize visual components for real-time monitoring

This commit is contained in:
David Fencl
2026-06-08 22:32:10 +02:00
parent 8fe39b7ab0
commit 4939d1c5dc
60 changed files with 3255 additions and 380 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ const LakesOverview = ({ language }: Props) => {
const loadData = () => {
fetch(`/data/lakes_index.json?t=${Date.now()}`)
.then(res => res.json())
.then(data => setLakes(data))
.then(data => setLakes(data.filter((l: Lake & { type?: string }) => l.type !== 'river')))
.catch(err => console.error(err));
};