diff --git a/new-lamassu-admin/src/pages/Wallet/AdvancedWallet.js b/new-lamassu-admin/src/pages/Wallet/AdvancedWallet.js
index ddcacf82..e326c720 100644
--- a/new-lamassu-admin/src/pages/Wallet/AdvancedWallet.js
+++ b/new-lamassu-admin/src/pages/Wallet/AdvancedWallet.js
@@ -1,5 +1,6 @@
import { useQuery, useMutation } from '@apollo/react-hooks'
import gql from 'graphql-tag'
+import { utils as coinUtils } from 'lamassu-coins'
import * as R from 'ramda'
import React from 'react'
@@ -8,8 +9,6 @@ import { fromNamespace, toNamespace, namespaces } from 'src/utils/config'
import { AdvancedWalletSchema, getAdvancedWalletElements } from './helper'
-const { utils: coinUtils } = require('lamassu-coins')
-
const SAVE_CONFIG = gql`
mutation Save($config: JSONObject, $accounts: JSONObject) {
saveConfig(config: $config)
@@ -44,19 +43,17 @@ const AdvancedWallet = () => {
const cryptoCurrencies = data?.cryptoCurrencies ?? []
return (
- <>
-
- >
+
)
}