nit workspace selection

This commit is contained in:
Ruben Fiszel
2024-05-15 06:11:44 +02:00
parent bc5c3652aa
commit 25367fee4e

View File

@@ -116,7 +116,13 @@
await goto(rd ?? '/')
}
} else {
await goto(rd ?? '/')
try {
await goto(rd ?? '/')
console.log('Workspace selected, going to', rd)
} catch (e) {
console.error('Error going to', rd, e)
window.location.reload()
}
}
loading = false
}