diff --git a/gatsby-config.js b/gatsby-config.js
index 9d0aa9d..b210942 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,7 +16,7 @@ module.exports = {
// }
// },
// require.resolve('/home/trout/work/psf/gatsby-plugin-bch-sweep')
- "fullstack-gatsby-plugin-bch-sweep"
+ 'fullstack-gatsby-plugin-bch-sweep'
// 'gatsby-plugin-bch-create-token'
],
// https://www.gatsbyjs.com/docs/reference/release-notes/v2.28/#feature-flags-in-gatsby-configjs
diff --git a/src/fullstack-gatsby-theme-bch-wallet/components/menu-components.js b/src/fullstack-gatsby-theme-bch-wallet/components/menu-components.js
index 8a80dec..0d8bab3 100644
--- a/src/fullstack-gatsby-theme-bch-wallet/components/menu-components.js
+++ b/src/fullstack-gatsby-theme-bch-wallet/components/menu-components.js
@@ -6,16 +6,16 @@
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 "fullstack-gatsby-plugin-bch-sweep/src/components/sweep/index"
+import About from '../../about'
+import Sweep from 'fullstack-gatsby-plugin-bch-sweep/src/components/sweep/index'
// import CreateToken from "gatsby-plugin-bch-create-token/src/components/create-token"
const { Item } = Sidebar
@@ -23,31 +23,31 @@ const { Item } = Sidebar
const MenuComponents = props => {
return [
{
- key: "Tokens",
- component: ,
- menuItem:
+ key: 'Tokens',
+ component: ,
+ menuItem:
},
{
- key: "Send/Receive BCH",
- component: ,
+ key: 'Send/Receive BCH',
+ component: ,
menuItem: (
)
},
{
- key: "Sweep",
- component: ,
- menuItem:
+ key: 'Sweep',
+ component: ,
+ menuItem:
},
{
- key: "Wallet",
- component: ,
+ key: 'Wallet',
+ component: ,
// component: ,
- menuItem:
+ menuItem:
},
// {
// key: 'Create Token',
@@ -57,14 +57,14 @@ const MenuComponents = props => {
// )
// },
{
- key: "Configure",
- component: ,
- menuItem:
+ key: 'Configure',
+ component: ,
+ menuItem:
},
{
- key: "About",
- component: ,
- menuItem:
+ key: 'About',
+ component: ,
+ menuItem:
}
]
}