Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
oatkiller committed Jul 13, 2020
1 parent 0e3ad6f commit 8a75f79
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,8 @@ const makeMapStateToProps = () => {
sort,
showCheckboxes,
// Used to determine whether the footer should show (since it is hidden if the graph is showing.)
graphEventId: /** `getTimeline` actually returns `TimelineModel | undefined` */ (getTimeline(
state,
id
) as TimelineModel | undefined)?.graphEventId,
// `getTimeline` actually returns `TimelineModel | undefined`
graphEventId: (getTimeline(state, id) as TimelineModel | undefined)?.graphEventId,
};
};
return mapStateToProps;
Expand Down

0 comments on commit 8a75f79

Please sign in to comment.