[Glitch] Run eslint --fix

I don't like it changing files this way, but it's basically what
c49213f0ea and a few others did.
This commit is contained in:
Claire
2023-02-03 20:52:07 +01:00
parent ed7cb79723
commit 155424e52f
233 changed files with 1262 additions and 1248 deletions

View File

@@ -15,7 +15,7 @@ class Bundle extends React.Component {
onFetch: PropTypes.func,
onFetchSuccess: PropTypes.func,
onFetchFail: PropTypes.func,
}
};
static defaultProps = {
loading: emptyComponent,
@@ -24,14 +24,14 @@ class Bundle extends React.Component {
onFetch: noop,
onFetchSuccess: noop,
onFetchFail: noop,
}
};
static cache = {}
static cache = {};
state = {
mod: undefined,
forceRender: false,
}
};
componentWillMount() {
this.load(this.props);
@@ -84,7 +84,7 @@ class Bundle extends React.Component {
this.setState({ mod: null });
onFetchFail(error);
});
}
};
render() {
const { loading: Loading, error: Error, children, renderDelay } = this.props;