diff --git a/frontend/app/components/Session_/EventsBlock/EventsBlock.js b/frontend/app/components/Session_/EventsBlock/EventsBlock.js
index 0a7f28f88..a1fd23b20 100644
--- a/frontend/app/components/Session_/EventsBlock/EventsBlock.js
+++ b/frontend/app/components/Session_/EventsBlock/EventsBlock.js
@@ -53,8 +53,9 @@ export default class EventsBlock extends React.Component {
const { filter } = this.state;
this.setState({ query: '' })
this.props.setEventFilter({ query: '', filter })
-
- this.scroller.current.forceUpdateGrid();
+ if (this.scroller.current) {
+ this.scroller.current.forceUpdateGrid();
+ }
setTimeout(() => {
if (!this.scroller.current) return;
diff --git a/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx b/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
index 7eaabc252..e7d8c8831 100644
--- a/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
+++ b/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
@@ -40,6 +40,7 @@ function SelectDateRange(props: Props) {
const isCustomRange = period.rangeName === CUSTOM_RANGE;
const customRange = isCustomRange ? period.rangeFormatted() : '';
+
return (