mirror of
https://github.com/umami-software/umami.git
synced 2026-02-11 16:17:13 +01:00
Lint fixes.
This commit is contained in:
parent
c948bbca12
commit
e1e6493dec
17 changed files with 41 additions and 71 deletions
|
|
@ -19,7 +19,7 @@ export function DatePickerForm({
|
|||
);
|
||||
const [singleDate, setSingleDate] = useState(defaultStartDate || new Date());
|
||||
const [startDate, setStartDate] = useState(defaultStartDate || new Date());
|
||||
const [endDate, setEndDate] = useState(defaultEndDate || new Date());
|
||||
const [endDate] = useState(defaultEndDate || new Date());
|
||||
const { formatMessage, labels } = useMessages();
|
||||
|
||||
const disabled =
|
||||
|
|
@ -35,8 +35,6 @@ export function DatePickerForm({
|
|||
}
|
||||
};
|
||||
|
||||
console.log({ minDate, maxDate, singleDate, startDate, endDate, disabled });
|
||||
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<div className={styles.filter}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue