From 1e0822eaa22eaf345dc8dedb20c9efaf07ad9023 Mon Sep 17 00:00:00 2001 From: johba Date: Fri, 20 Feb 2026 17:28:59 +0100 Subject: [PATCH] fix: clean URLs, contract addresses, gitmodule (#16, #58, #147) (#162) --- .gitmodules | 1 + landing/src/components/KFooter.vue | 63 ++++++++++++++++++- landing/src/components/WalletCard.vue | 2 +- landing/src/views/docs/TokenomicsDocs.vue | 2 +- tests/e2e/01-acquire-and-stake.spec.ts | 7 ++- tests/e2e/02-max-stake-all-tax-rates.spec.ts | 7 ++- tests/e2e/03-verify-graphql-url.spec.ts | 2 +- tests/e2e/06-dashboard-pages.spec.ts | 12 ++-- tests/e2e/usertest/alex-newcomer.spec.ts | 8 +-- tests/e2e/usertest/all-personas.spec.ts | 6 +- tests/e2e/usertest/helpers.ts | 2 +- tests/e2e/usertest/marcus-degen.spec.ts | 8 +-- .../e2e/usertest/priya-institutional.spec.ts | 8 +-- tests/e2e/usertest/sarah-yield-farmer.spec.ts | 8 +-- tests/e2e/usertest/test-b-staker-v2.spec.ts | 2 +- tests/e2e/usertest/test-b-staker.spec.ts | 2 +- tests/e2e/usertest/tyler-retail-degen.spec.ts | 6 +- tests/setup/navigate.ts | 17 +++++ .../src/components/layouts/NavbarHeader.vue | 2 +- web-app/src/layouts/NavbarLayout.vue | 2 +- web-app/src/router/index.ts | 6 +- 21 files changed, 126 insertions(+), 47 deletions(-) create mode 100644 tests/setup/navigate.ts 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}`);