diff --git a/gatsby-config.js b/gatsby-config.js index ca0ca30..a45e462 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') - "fullstack-gatsby-plugin-bch-sweep", - "gatsby-plugin-bch-create-token" + '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 flags: { 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 0abae73..79302b8 100644 --- a/src/fullstack-gatsby-theme-bch-wallet/components/menu-components.js +++ b/src/fullstack-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 "fullstack-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 'fullstack-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: , - 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", - component: , + key: 'Create Token', + component: , menuItem: ( - + ) }, { - key: "Configure", - component: , - menuItem: + key: 'Configure', + component: , + menuItem: }, { - key: "About", - component: , - menuItem: + key: 'About', + component: , + menuItem: } ] }