Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 4a8938f

Browse files
committed
refactor(AccessForm): remove unused store accessors
1 parent 3f63d9d commit 4a8938f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/components/AccessForm.vue

+2-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
import { defineComponent } from "vue";
4646
import elForm from "element-plus/lib/el-form";
4747
import { ElMessageBox } from "element-plus";
48-
import { mapActions, mapGetters, mapMutations, mapState } from "vuex";
48+
import { mapActions, mapMutations, mapState } from "vuex";
4949
import { notifyErrors } from "@/utils/error-notification";
5050
import util from "tweetnacl-util";
5151
@@ -85,8 +85,7 @@ export default defineComponent({
8585
};
8686
},
8787
computed: {
88-
...mapState(["ourSecretKey", "executionToken"]),
89-
...mapGetters(["enclavePublicKey"])
88+
...mapState(["executionToken"])
9089
},
9190
methods: {
9291
...mapActions(["requestExecutionToken"]),

0 commit comments

Comments
 (0)