Skip to content

Commit

Permalink
fixed table bug
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrm committed Mar 11, 2020
1 parent 0be8fd3 commit 4dd085d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default class Home extends React.Component {
currentZip={this.state.currentZip}
/>
<EventsTable
allTownHalls={allStateTownHalls || allTownHalls} // if state town halls are present, it's because we are on a state site
allTownHalls={allStateTownHalls.length ? allStateTownHalls : allTownHalls} // if state town halls are present, it's because we are on a state site
/>
<EventModal />
</React.Fragment>
Expand Down

0 comments on commit 4dd085d

Please sign in to comment.