diff --git a/.gitmodules b/.gitmodules index 4a59d24..c14d654 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,6 +7,7 @@ [submodule "onchain/lib/uni-v3-lib"] path = onchain/lib/uni-v3-lib url = https://github.com/Aperture-Finance/uni-v3-lib + ignore = dirty [submodule "onchain/lib/openzeppelin-contracts"] path = onchain/lib/openzeppelin-contracts url = https://github.com/openzeppelin/openzeppelin-contracts diff --git a/landing/src/components/KFooter.vue b/landing/src/components/KFooter.vue index e07b545..084fcc2 100644 --- a/landing/src/components/KFooter.vue +++ b/landing/src/components/KFooter.vue @@ -1,13 +1,37 @@ + + diff --git a/landing/src/components/WalletCard.vue b/landing/src/components/WalletCard.vue index 158bed7..ed510fe 100644 --- a/landing/src/components/WalletCard.vue +++ b/landing/src/components/WalletCard.vue @@ -73,7 +73,7 @@ const pnlPercent = computed(() => { const pnlClass = computed(() => (pnlPercent.value >= 0 ? 'positive' : 'negative')); -const appUrl = computed(() => `/app/#/wallet/${address.value}`); +const appUrl = computed(() => `/app/wallet/${address.value}`);