mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-04 05:54:57 +00:00
build fix
This commit is contained in:
@@ -9,10 +9,10 @@ export class PasswordStorageService {
|
||||
}
|
||||
|
||||
async deletePassword (connection: SSHConnection): Promise<void> {
|
||||
return keytar.deletePassword(`ssh@${connection.host}`, connection.user)
|
||||
await keytar.deletePassword(`ssh@${connection.host}`, connection.user)
|
||||
}
|
||||
|
||||
async loadPassword (connection: SSHConnection): Promise<string> {
|
||||
return keytar..getPassword(`ssh@${connection.host}`, connection.user)
|
||||
return keytar.getPassword(`ssh@${connection.host}`, connection.user)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user