diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d2698753..e62146a5 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -9498,7 +9498,7 @@ dependencies = [ [[package]] name = "subspace-desktop" -version = "0.4.3" +version = "0.4.4" dependencies = [ "anyhow", "dotenv", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 5ece14bc..7e113feb 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subspace-desktop" -version = "0.4.3" +version = "0.4.4" description = "Subspace desktop" authors = ["Subspace Labs "] license = "Apache-2.0" diff --git a/src/layouts/MainLayout.vue b/src/layouts/MainLayout.vue index 3f030c34..a79ba9ba 100644 --- a/src/layouts/MainLayout.vue +++ b/src/layouts/MainLayout.vue @@ -6,7 +6,7 @@ q-layout(view="hHh lpr fFf") q-toolbar-title .row .col-auto.q-mr-lg.relative-position - p {{ "0.4.3 "}} + p {{ "0.4.4 "}} .col-auto.q-mr-md.relative-position q-badge(color="grey" text-color="white") .q-pa-xs(style="font-size: 14px") {{ lang.nonIncentivizedLabel }} diff --git a/src/pages/SetupPlot.vue b/src/pages/SetupPlot.vue index 3f621e9a..c50a4aad 100644 --- a/src/pages/SetupPlot.vue +++ b/src/pages/SetupPlot.vue @@ -299,9 +299,13 @@ export default defineComponent({ }, async checkIdentity() { const config = appConfig.getAppConfig() - if (config && config.importedRewAddr === false) { - await this.client.createRewardAddress() - await this.viewMnemonic() + if (config) { + if (config.importedRewAddr === false) { + await this.client.createRewardAddress() + await this.viewMnemonic() + } else { + this.$router.replace({ name: "plottingProgress" }) + } } }, async viewMnemonic() {