Data points outside time range postgresql

Hello everybody.
I have a script, which work correct, but today on my graph i see “Data points outside time range”. How can i solve it?
select
extract(epoch from “date”) as time,
“action_description” as metric,
count(“subscriber”) as Subscriptions
FROM public.“VBI_KZ”
where
$__timeFilter(“date”)
and status = ‘FULFILLED’
group by “date”, “action_description”
order by “date”

“date” format is date

Are you using timestamp in seconds or milliseconds?

i use date in format YYYY-MM-DD