Skip to content

Commit

Permalink
Fix: sites layout
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderleegs committed Oct 21, 2022
1 parent 738ea87 commit 9dd446a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/layouts/Sites.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ const Sites = ({ siteNames }) => {
export default class SitesWrapper extends Component {
_isMounted = false

constructor(props) {}
constructor(props) {
super(props)
this.state = {
siteNames: null,
}
}

async componentDidMount() {
this._isMounted = true
Expand Down

0 comments on commit 9dd446a

Please sign in to comment.