mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
default to 7 days (#12917)
This commit is contained in:
parent
a8371d2cb1
commit
ec2c5b3d07
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ const NewUsagePage: React.FC<NewUsagePageProps> = ({
|
|||
|
||||
// Add date range state
|
||||
const [dateValue, setDateValue] = useState<DateRangePickerValue>({
|
||||
from: new Date(Date.now() - 28 * 24 * 60 * 60 * 1000),
|
||||
from: new Date(Date.now() - 7 * 24 * 60 * 60 * 1000),
|
||||
to: new Date(),
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue