default to 7 days (#12917)

This commit is contained in:
tanjiro
2025-07-28 21:27:43 -07:00
committed by GitHub
parent a8371d2cb1
commit ec2c5b3d07
@@ -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(),
});