diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-10-06 15:25:10 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-10-06 15:25:10 +0200 |
commit | d6bc5b46a4fc4b75dcba0380063cfc7e8bde212c (patch) | |
tree | f56bf43896bdd8a6c2c63bc931b8574445d24420 /src-vue/src/views/DeveloperView.vue | |
parent | 439574d9b7f2ac4a95d97cb56e57cf152bb01ad2 (diff) | |
parent | ca6c9c3e9965105624b1cc0a211b6edf986260f8 (diff) | |
download | FlightCore-d6bc5b46a4fc4b75dcba0380063cfc7e8bde212c.tar.gz FlightCore-d6bc5b46a4fc4b75dcba0380063cfc7e8bde212c.zip |
Merge branch 'main' into feat/launch-parameters
Diffstat (limited to 'src-vue/src/views/DeveloperView.vue')
-rw-r--r-- | src-vue/src/views/DeveloperView.vue | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue index 8adc7587..206d425b 100644 --- a/src-vue/src/views/DeveloperView.vue +++ b/src-vue/src/views/DeveloperView.vue @@ -89,10 +89,6 @@ Get installed mods </el-button> - <el-button type="primary" @click="killNorthstar"> - Kill Northstar - </el-button> - <h3>Testing</h3> <pull-requests-selector /> @@ -251,16 +247,6 @@ export default defineComponent({ showErrorNotification(error); }); }, - async killNorthstar() { - await invoke("kill_northstar") - .then((message) => { - // Just a visual indicator that it worked - showNotification('Success'); - }) - .catch((error) => { - showErrorNotification(error); - }); - }, async installMod() { let mod_to_install = this.mod_to_install_field_string; await invoke<string>("install_mod_caller", { gameInstall: this.$store.state.game_install, thunderstoreModString: mod_to_install }).then((message) => { |