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
+2 -1
View File
@@ -32,6 +32,7 @@ import { useFetch } from '@/helpers/fetch.js'
import { install as pack_install } from '@/helpers/pack.js'
import { useTheming } from '@/store/state.js'
import { mixpanel_track } from '@/helpers/mixpanel'
import { handleSevereError } from '@/store/error.js'
const router = useRouter()
@@ -129,7 +130,7 @@ const handleProjectClick = (event, passedInstance) => {
const handleOptionsClick = async (args) => {
switch (args.option) {
case 'play':
await run(args.item.path).catch(handleError)
await run(args.item.path).catch(handleSevereError)
mixpanel_track('InstanceStart', {
loader: args.item.metadata.loader,
game_version: args.item.metadata.game_version,