Skip to content

Commit

Permalink
bring back config
Browse files Browse the repository at this point in the history
  • Loading branch information
tanguyenvn committed Aug 14, 2023
1 parent 59faca9 commit 758852d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions examples/vue-app/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,17 @@ export default defineComponent({
messageToEncrypt: "",
encryptionKey: "",
messageEncrypted: "",
buildEnv: "lrc" as TORUS_BUILD_ENV_TYPE,
buildEnv: "production" as TORUS_BUILD_ENV_TYPE,
publicAddressList: ["google", "discord", "reddit", "email_passwordless"],
isExpanded: true,
isCopied: false,
};
},
mounted() {
const torus = new Torus();
const torus = new Torus({
apiKey: "torus-default",
buttonPosition: "bottom-left",
});
web3Obj.torus = torus;
},
methods: {
Expand Down

0 comments on commit 758852d

Please sign in to comment.