diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-10-06 15:07:34 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-10-06 15:07:34 +0200 |
commit | 3359b95eb3defa968ee391bc9ca7426754e5e78f (patch) | |
tree | cab9f27ba12eeb724ab6f1d7d1a60f3d4d827e06 | |
parent | 3172d051a475956f9ef9eff40016596025741018 (diff) | |
download | FlightCore-3359b95eb3defa968ee391bc9ca7426754e5e78f.tar.gz FlightCore-3359b95eb3defa968ee391bc9ca7426754e5e78f.zip |
fix: Remove console logs
As requested in review
-rw-r--r-- | src-vue/src/views/DeveloperView.vue | 2 |
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}`, |