Skip to content

Commit

Permalink
copy and links update
Browse files Browse the repository at this point in the history
  • Loading branch information
lionellbriones committed Jun 23, 2023
1 parent be7446d commit c926bd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 27 deletions.
26 changes: 1 addition & 25 deletions src/components/Login/LoginTitle/LoginTitle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,7 @@
:class="isDapp ? 'headline font-weight-medium' : 'display-1 font-weight-bold'"
:style="{ maxWidth: isDapp ? 'inherit' : '260px' }"
>
{{ t('login.your') }}
<v-menu offset-y>
<template #activator="{ on, attrs }">
<v-btn v-bind="attrs" class="btn-select justify-space-between m-0 p-0" v-on="on">
<div>
<img :src="require(`../../../assets/img/icons/icon-${selectedWallet.toLowerCase()}.svg`)" />
<span class="chain-name">{{ selectedWallet }}</span>
</div>
<v-icon class="ma-0 float-right justify-end">$vuetify.icons.select</v-icon>
</v-btn>
</template>
<v-list class="chain-list">
<v-list-item v-for="(item, index) in tickerNames" :key="item" @click="openWallet(item)">
<v-list-item-title>{{ item }}</v-list-item-title>
<v-divider v-if="index < availableOn.length - 1" :key="`${index}-divider`" />
</v-list-item>
</v-list>
</v-menu>
</div>
<div
class="text_2--text"
:class="isDapp ? 'headline font-weight-medium' : 'display-1 font-weight-bold'"
:style="{ maxWidth: isDapp ? 'inherit' : '260px' }"
>
{{ t('login.titleNew') }}
{{ t('login.title') }}
</div>
</v-flex>
<div v-else class="mb-2 mb-sm-0">
Expand Down
2 changes: 1 addition & 1 deletion src/components/WalletAccount/AccountMenu/AccountMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
</v-list>
<v-divider v-if="$vuetify.breakpoint.smAndDown"></v-divider>
<v-list class="ml-1">
<v-list-item href="https://docs.tor.us/#users" target="_blank" rel="noreferrer noopener">
<v-list-item href="https://docs.exchangaweb3.com" target="_blank" rel="noreferrer noopener">
<v-list-item-action class="mr-2 justify-center">
<v-icon size="20" class="text_2--text">$vuetify.icons.info</v-icon>
</v-list-item-action>
Expand Down
2 changes: 1 addition & 1 deletion src/components/helpers/WalletConnect/WalletConnect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default {
wcConnectorSession(value) {
if (value.connected) {
this.wcConnecting = false
this.$store.dispatch('setSuccessMessage', 'walletConnect.connectedTo')
this.$store.dispatch('setSuccessMessage', this.t('walletConnect.connectedToCustom').replace(/{wallet}/gi, 'Exchangaweb3'))
if (value.uri) this.wcCopyPasteLink = value.uri
} else if (value.sessionData) {
this.wcConnecting = false
Expand Down

0 comments on commit c926bd3

Please sign in to comment.