remove extraneous semicolons
mary have mercy
This commit is contained in:
parent
c1f2b38ba2
commit
3fdf603cb5
1 changed files with 3 additions and 3 deletions
|
@ -8,15 +8,15 @@ import { log } from '../util.js'
|
||||||
import { domain as DOMAIN } from '../config.json'
|
import { domain as DOMAIN } from '../config.json'
|
||||||
|
|
||||||
export default class App extends Component {
|
export default class App extends Component {
|
||||||
websocket = null;
|
websocket = null
|
||||||
|
|
||||||
reconnectionTime = 1000;
|
reconnectionTime = 1000
|
||||||
|
|
||||||
state = {
|
state = {
|
||||||
loading: true,
|
loading: true,
|
||||||
error: null,
|
error: null,
|
||||||
metrics: null,
|
metrics: null,
|
||||||
};
|
}
|
||||||
|
|
||||||
async componentDidMount () {
|
async componentDidMount () {
|
||||||
await this.loadMetrics()
|
await this.loadMetrics()
|
||||||
|
|
Loading…
Reference in a new issue