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 / { location / {
proxy_pass http://localhost:5000/; proxy_pass http://localhost:5000/;
try_files $uri $uri/ =404;
} }
} }

View File

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