From ec8fed96e394ff252c7e98bed1ca2e5322ad650a Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 14 Nov 2020 16:13:58 -0800 Subject: More cleanup --- modern/src/reports/StopReportPage.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'modern/src/reports/StopReportPage.js') diff --git a/modern/src/reports/StopReportPage.js b/modern/src/reports/StopReportPage.js index c9e50c8..751909d 100644 --- a/modern/src/reports/StopReportPage.js +++ b/modern/src/reports/StopReportPage.js @@ -9,21 +9,16 @@ import { useAttributePreference } from '../common/preferences'; const ReportFilterForm = ({ onResult }) => { const handleSubmit = async (deviceId, from, to) => { - const query = new URLSearchParams({ - deviceId, - from: from.toISOString(), - to: to.toISOString(), - }); + const query = new URLSearchParams({ deviceId, from, to }); const response = await fetch(`/api/reports/stops?${query.toString()}`, { headers: { Accept: 'application/json' } }); if (response.ok) { onResult(await response.json()); } } return ; -} +}; const StopReportPage = () => { - const distanceUnit = useAttributePreference('distanceUnit'); const [items, setItems] = useState([]); @@ -57,6 +52,6 @@ const StopReportPage = () => { ); -} +}; export default StopReportPage; -- cgit v1.2.3