fix compile error

This commit is contained in:
b1ek 2023-08-23 20:31:07 +10:00
parent 40e98f6557
commit 5cb84d37bd
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
let loaded = false;
// load servers
invoke('list_servers').then(data => {
invoke('list_servers').then((data: any) => {
list = data;
loaded = true;
})