Skip to content

Commit

Permalink
feat(front): add wallet connect icon
Browse files Browse the repository at this point in the history
  • Loading branch information
1Mateus committed Jan 17, 2024
1 parent 09b23a9 commit deac4b9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions front/chains/kadena/adapters/wallet-connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ import {
const metadata = {
id: 'provider:kadena:wallet-connect',
name: 'Wallet Connect',
icon: '/svg/wallet-connect.svg',
icon: '/images/wallets/wallet-connect.png',
disabled: false
}

export const provider = defineStore({
id: 'provider:kadena:wallet-connect',

state: (): any => ({
icon: '/svg/wallet-connect.svg',
icon: '/images/wallets/wallet-connect.png',

pairings: [],

Expand Down
2 changes: 1 addition & 1 deletion front/components/UI/Modal/Tokens.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const filtered = computed(() => {
"
>
<div>
<img :src="token.icon.replace('https://opact.io/', '/')" class="w-9 h-9" />
<img :src="token.icon" class="w-9 h-9" />
</div>

<div class="flex flex-col space-y-1 text-left">
Expand Down
2 changes: 1 addition & 1 deletion front/components/UI/Select/Token.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const emit = defineEmits(['selected'])
</div>

<div v-else class="space-x-4 lg:space-x-2 flex items-center">
<img :src="token.icon.replace('https://opact.io/', '/')" class="w-6 h-6 lg:w-10 lg:h-10" />
<img :src="token.icon" class="w-6 h-6 lg:w-10 lg:h-10" />

<span
v-text="token.name"
Expand Down
2 changes: 1 addition & 1 deletion front/components/UI/SelectedToken.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ withDefaults(
"
>
<div class="space-x-4 flex items-center">
<img :src="token.icon.replace('https://opact.io/', '/')" class="w-6 h-6 lg:w-10 lg:h-10" />
<img :src="token.icon" class="w-6 h-6 lg:w-10 lg:h-10" />

<span
v-text="token.name"
Expand Down
Binary file added front/public/images/wallets/wallet-connect.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit deac4b9

Please sign in to comment.