Make things great again

This commit is contained in:
Amit Jakubowicz 2019-08-08 12:33:53 +02:00
parent 6b69090789
commit e5b1eb3cde
2 changed files with 3 additions and 5 deletions

View File

@ -13,6 +13,5 @@ server {
location / {
proxy_pass http://localhost:5000/;
try_files $uri $uri/ =404;
}
}

View File

@ -21,15 +21,14 @@ const endOfThisMonth = (
}
)()
const Calendar = (props: Props) => {
return (
<OccurrencesQuery
variables={{
filter: {
from: "2019-06-01",
to: "2019-06-30"
}
from: beginningOfThisMonth,
to: endOfThisMonth,
},
}}
>
{({data, error, loading}) => {