diff --git a/components/DateFilter.js b/components/DateFilter.js
index 2889dde3..7b7838dd 100644
--- a/components/DateFilter.js
+++ b/components/DateFilter.js
@@ -13,10 +13,12 @@ const filterOptions = [
{ label: 'This year', value: '1year' },
];
-export default function DateFilter({ value, onChange }) {
+export default function DateFilter({ value, onChange, className }) {
function handleChange(value) {
onChange(getDateRange(value));
}
- return