diff --git a/crawler/frontend/src/App.tsx b/crawler/frontend/src/App.tsx index 606a663..d12753a 100644 --- a/crawler/frontend/src/App.tsx +++ b/crawler/frontend/src/App.tsx @@ -150,7 +150,7 @@ function App() {
-

Welcome, {user.profile.name}!

+

Welcome, {user.profile.email}!

diff --git a/crawler/frontend/src/components/Parameters.tsx b/crawler/frontend/src/components/Parameters.tsx index c1d9b68..89fced0 100644 --- a/crawler/frontend/src/components/Parameters.tsx +++ b/crawler/frontend/src/components/Parameters.tsx @@ -69,8 +69,7 @@ export function Parameters( } = useForm() const [action, setAction] = useState<'fetch-data' | 'visualize' | null>(null) const [availableFromRawInput, setAvailableFromRawInput] = useState("now"); - const [districts, setDistricts] = useState([]); - console.log(districts) + const [_districts, setDistricts] = useState([]); useEffect(() => { getUser().then(user => {