From d345059048efdf7226b7bc26e6514792a0a4cbff Mon Sep 17 00:00:00 2001 From: Vojtech Simetka Date: Tue, 21 Jun 2022 15:29:14 +0200 Subject: [PATCH] fix: the topup urls are now under `/account` which fixes highlighting (#424) --- src/routes.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/routes.tsx b/src/routes.tsx index b1f3452..09b8e3a 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -34,14 +34,14 @@ export enum ROUTES { HASH = '/files/hash/:hash', SETTINGS = '/settings', STATUS = '/status', - WALLET = '/wallet', - CONFIRMATION = '/wallet/confirmation', - TOP_UP_CRYPTO = '/top-up/crypto', - TOP_UP_CRYPTO_SWAP = '/top-up/crypto/swap', - TOP_UP_BANK_CARD = '/top-up/bank-card', - TOP_UP_BANK_CARD_SWAP = '/top-up/bank-card/swap', - TOP_UP_GIFT_CODE = '/top-up/gift-code', - TOP_UP_GIFT_CODE_FUND = '/top-up/gift-code/fund/:privateKeyString', + WALLET = '/account/wallet/top-up', + CONFIRMATION = '/account/wallet/top-up/confirmation', + TOP_UP_CRYPTO = '/account/wallet/top-up/crypto', + TOP_UP_CRYPTO_SWAP = '/account/wallet/top-up/crypto/swap', + TOP_UP_BANK_CARD = '/account/wallet/top-up/bank-card', + TOP_UP_BANK_CARD_SWAP = '/account/wallet/top-up/bank-card/swap', + TOP_UP_GIFT_CODE = '/account/wallet/top-up/gift-code', + TOP_UP_GIFT_CODE_FUND = '/account/wallet/top-up/gift-code/fund/:privateKeyString', RESTART = '/restart', RESTART_LIGHT = '/light-mode-restart', ACCOUNT_WALLET = '/account/wallet',