chore(utils): remove unnecessary `await` (#3124)

shuuji3/a11y/show-nav-botton-label
@beer 2025-01-04 12:15:25 +06:00 zatwierdzone przez GitHub
rodzic e59f5dbb8f
commit 154fdaaad9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -92,7 +92,7 @@ export async function deleteApp(server: string) {
export async function listServers() {
const keys = await storage.getKeys('servers:v3:')
const servers = new Set<string>()
for await (const key of keys) {
for (const key of keys) {
const id = key.split(':')[2]
if (id)
servers.add(id.toLocaleLowerCase())