aboutsummaryrefslogtreecommitdiff
path: root/src-vue
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-06 15:07:34 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-06 15:07:34 +0200
commit3359b95eb3defa968ee391bc9ca7426754e5e78f (patch)
treecab9f27ba12eeb724ab6f1d7d1a60f3d4d827e06 /src-vue
parent3172d051a475956f9ef9eff40016596025741018 (diff)
downloadFlightCore-3359b95eb3defa968ee391bc9ca7426754e5e78f.tar.gz
FlightCore-3359b95eb3defa968ee391bc9ca7426754e5e78f.zip
fix: Remove console logs
As requested in review
Diffstat (limited to 'src-vue')
-rw-r--r--src-vue/src/views/DeveloperView.vue2
1 files changed, 0 insertions, 2 deletions
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue
index 72a3f4d1..7ffc7d40 100644
--- a/src-vue/src/views/DeveloperView.vue
+++ b/src-vue/src/views/DeveloperView.vue
@@ -68,7 +68,6 @@ export default defineComponent({
install_type: this.$store.state.install_type
} as GameInstall;
await invoke("disable_all_but_core_caller", { gameInstall: game_install }).then((message) => {
- console.log(message);
ElNotification({
title: 'Success',
message: "Disabled all mods but core",
@@ -77,7 +76,6 @@ export default defineComponent({
});
})
.catch((error) => {
- console.error(error);
ElNotification({
title: 'Error',
message: `${error}`,