async ngOnInit()

in src/app/ui/main/main.component.ts [58:70]


    async ngOnInit() {
        this._timer = setInterval(async () => {
            await this.loadProbes()
        }, 1000)

        try {
            this._loading = true

            await this.loadProbes()
        } finally {
            this._loading = false
        }
    }