Update web/src/routes/Export.jsx

Co-authored-by: Blake Blackshear <blakeb@blakeshome.com>
This commit is contained in:
Sergey Krashevich 2023-06-11 15:25:21 +03:00 committed by GitHub
parent 5254cfeea2
commit e8527f9b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ export default function Export() {
const end = new Date(`${endDate}T${endTime}`).getTime() / 1000;
if (end <= start) {
setMessage({ text: 'The end time must be larger than the start time.', error: true });
setMessage({ text: 'The end time must be after the start time.', error: true });
return;
}