Skip to content

Commit

Permalink
feat: purge files
Browse files Browse the repository at this point in the history
  • Loading branch information
1Mateus committed Jan 6, 2024
1 parent 54ce0fb commit f27a8e1
Show file tree
Hide file tree
Showing 200 changed files with 40 additions and 4,684 deletions.
6 changes: 1 addition & 5 deletions front/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,11 @@ Here's a brief overview of the structure:

```bash
.
├── apps # Nuxt Layer
│ └── app # App Page
│ └── landing # Landing Page
├── components # Global Components
├── content # Nuxt Content
├── pages # Nuxt Content
├── layouts # Layouts
├── plugins # Plugins
├── stores # Stores
├── ui # UI Component Library
├── app.config.ts # Application Config
```

Expand Down
4 changes: 2 additions & 2 deletions front/chains/kadena/adapters/xwallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { defineStore } from 'pinia'
const metadata = {
name: 'Ecko Wallet',
id: 'provider:kadena:x-wallet',
icon: '/ecko.png',
icon: '/images/wallets/ecko.png',
disabled: false
}

Expand All @@ -23,7 +23,7 @@ export const provider = defineStore({
state: (): any => ({
account: null,
callback: undefined,
icon: '/ecko.png'
icon: '/images/wallets/ecko.png'
}),

getters: {
Expand Down
2 changes: 1 addition & 1 deletion front/components/Faucet/steps/Connect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const config = useRuntimeConfig()
</button>
</div>

<SelectWallet
<UISelectWallet
label="Connect Wallet"
@connected="handle(token)"
/>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Faucet/steps/Token.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const pay = async () => {
:modelValue="100"
/>

<SelectToken
<UISelectToken
:token="data.token"
@selected="data.token = $event"
/>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Home/Button/Receive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const data = reactive({
@click.prevent="data.show = true"
/>

<ModalTokenType
<UIModalTokenType
title="Receive"
:show="data.show"
@close="data.show = false"
Expand Down
2 changes: 1 addition & 1 deletion front/components/Home/Button/Send.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const data = reactive({
@click.prevent="data.show = true"
/>

<ModalTokenType
<UIModalTokenType
title="Send"
baseRoute="send"
:show="data.show"
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/NFT/steps/Connect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const emit = defineEmits(['changeStep'])
</span>
</div>

<SelectWallet
<UISelectWallet
@connected="emit('changeStep', 'payment')"
/>
</UICardBody>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/NFT/steps/Payment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const { provider } = useExtensions()
title="Confirm deposit information"
/>

<SelectNFT
<UISelectNFT
:disabled="!provider"
:token="selectedToken"
@selected="selectedToken = $event"
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/Token/steps/Connect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const emit = defineEmits(['changeStep'])
</span>
</div>

<SelectWallet
<UISelectWallet
@connected="emit('changeStep', 'payment')"
/>
</UICardBody>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/Token/steps/Payment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ watch(
v-model="amount"
/>

<SelectToken
<UISelectToken
:token="selectedToken"
@selected="selectedToken = $event"
/>
Expand Down
113 changes: 0 additions & 113 deletions front/components/LP/site-collapsible/Collapsible.vue

This file was deleted.

Loading

0 comments on commit f27a8e1

Please sign in to comment.