aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src-vue/src/plugins/store.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts
index b2106960..fdf0ce66 100644
--- a/src-vue/src/plugins/store.ts
+++ b/src-vue/src/plugins/store.ts
@@ -138,7 +138,13 @@ async function _initializeApp(state: any) {
.catch((err) => {
// Gamepath not found or other error
console.error(err);
- alert(err);
+ ElNotification({
+ title: 'Titanfall2 not found!',
+ message: "Please manually select install location",
+ type: 'error',
+ position: 'bottom-right',
+ duration: 0 // Duration `0` means the notification will not auto-vanish
+ });
});
const typedResult: GameInstall = result as GameInstall;
state.game_path = typedResult.game_path;