diff --git a/gatsby-config.js b/gatsby-config.js
index 9c0c6e6..8f80105 100644
--- a/gatsby-config.js
+++ b/gatsby-config.js
@@ -7,7 +7,7 @@
module.exports = {
/* Your site config here */
plugins: [
- "fullstack-gatsby-theme-bch-wallet",
+ 'fullstack-gatsby-theme-bch-wallet',
// 'bch-wallet-plugin-postoffice',
// {
// resolve: 'gatsby-plugin-compile-es6-packages',
@@ -16,8 +16,8 @@ module.exports = {
// }
// },
// require.resolve('/home/trout/work/psf/gatsby-plugin-bch-sweep')
- "gatsby-plugin-bch-sweep",
- "gatsby-plugin-bch-create-token"
+ 'gatsby-plugin-bch-sweep',
+ 'gatsby-plugin-bch-create-token'
],
// https://www.gatsbyjs.com/docs/reference/release-notes/v2.28/#feature-flags-in-gatsby-configjs
flags: {
diff --git a/src/gatsby-theme-bch-wallet/components/menu-components.js b/src/gatsby-theme-bch-wallet/components/menu-components.js
index 5286dfe..b20a8e3 100644
--- a/src/gatsby-theme-bch-wallet/components/menu-components.js
+++ b/src/gatsby-theme-bch-wallet/components/menu-components.js
@@ -6,65 +6,65 @@
It over-rides he default file in the gatsby-ipfs-web-wallet Theme.
*/
-import React from "react"
-import { Sidebar } from "adminlte-2-react"
+import React from 'react'
+import { Sidebar } from 'adminlte-2-react'
-import Wallet from "fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/wallet"
-import Tokens from "fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/tokens"
-import Configure from "fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/configure"
-import SendReceive from "fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/send-receive"
+import Wallet from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/wallet'
+import Tokens from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/tokens'
+import Configure from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/configure'
+import SendReceive from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/send-receive'
-import About from "../../about"
-import Sweep from "gatsby-plugin-bch-sweep/src/components/sweep/index"
-import CreateToken from "gatsby-plugin-bch-create-token/src/components/create-token"
+import About from '../../about'
+import Sweep from 'gatsby-plugin-bch-sweep/src/components/sweep/index'
+import CreateToken from 'gatsby-plugin-bch-create-token/src/components/create-token'
const { Item } = Sidebar
const MenuComponents = props => {
return [
{
- key: "Tokens",
- component:
+
Loading...