chore: fix errenous windows paths from previous migration

This commit is contained in:
Mo
2023-05-07 07:38:22 -05:00
parent ae03f84651
commit e351a97940
11 changed files with 101 additions and 17 deletions

View File

@@ -153,6 +153,10 @@ export class DesktopDevice extends WebOrDesktopDevice implements DesktopDeviceIn
return this.remoteBridge.monitorPlaintextBackupsLocationForChanges(backupsDirectory)
}
joinPaths(...paths: string[]): Promise<string> {
return this.remoteBridge.joinPaths(...paths)
}
async performHardReset(): Promise<void> {
console.error('performHardReset is not yet implemented')
}