Bump to 0.7.0 + Add sign-in error (#1133)

This commit is contained in:
Geometrically
2024-04-23 12:05:28 -07:00
committed by GitHub
parent 49cecf837b
commit 99ea06e22a
10 changed files with 282 additions and 170 deletions

View File

@@ -153,6 +153,7 @@ import ContextMenu from '@/components/ui/ContextMenu.vue'
import { mixpanel_track } from '@/helpers/mixpanel'
import { convertFileSrc } from '@tauri-apps/api/tauri'
import { useFetch } from '@/helpers/fetch'
import { handleSevereError } from '@/store/error.js'
const route = useRoute()
@@ -185,7 +186,7 @@ const options = ref(null)
const startInstance = async (context) => {
loading.value = true
uuid.value = await run(route.params.id).catch(handleError)
uuid.value = await run(route.params.id).catch(handleSevereError)
loading.value = false
playing.value = true