From d5a90c793b26a82a9254b1d8113cb73a1cc9fb65 Mon Sep 17 00:00:00 2001 From: padreug Date: Mon, 15 Sep 2025 00:54:01 +0200 Subject: [PATCH] Refactor wallet module components for improved code organization and performance - Updated import paths in the wallet module to enhance clarity and maintainability. - Removed unused imports in ReceiveDialog and SendDialog components to streamline the code. - Introduced a computed property in WalletPage to extract the base domain from the payment service configuration, improving readability and error handling. These changes contribute to a cleaner codebase and enhance the overall performance of the wallet module. --- src/modules/wallet/components/ReceiveDialog.vue | 4 ++-- src/modules/wallet/components/SendDialog.vue | 3 +-- src/modules/wallet/index.ts | 12 ++---------- src/modules/wallet/views/WalletPage.vue | 12 +++++++++--- 4 files changed, 14 insertions(+), 17 deletions(-) diff --git a/src/modules/wallet/components/ReceiveDialog.vue b/src/modules/wallet/components/ReceiveDialog.vue index 1328ea1..5302c81 100644 --- a/src/modules/wallet/components/ReceiveDialog.vue +++ b/src/modules/wallet/components/ReceiveDialog.vue @@ -1,5 +1,5 @@