Skip to content

Commit

Permalink
Fixed branding
Browse files Browse the repository at this point in the history
  • Loading branch information
Px committed Jun 1, 2021
1 parent d216bad commit 2479570
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to HoneyComb
# Contributing to Honeycomb
:tada: Thank you for being interested in contributing to Aragon! :tada:

Feel welcome and read the following sections in order to know how to ask questions and how to work on something.
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="HoneyComb" />
<meta name="description" content="Honeycomb" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.ico" />
<!--
manifest.json provides metadata used when your web app is installed on a
Expand All @@ -21,7 +21,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>HoneyComb</title>
<title>Honeycomb</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "HoneyComb",
"name": "Honey Comb",
"short_name": "Honeycomb",
"name": "Honeycomb",
"icons": [
{
"src": "icon.png",
Expand Down
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" href="%PUBLIC_URL%/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="HoneyComb" />
<meta name="description" content="Honeycomb wallet" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.svg" />
<!--
manifest.json provides metadata used when your web app is installed on a
Expand All @@ -23,7 +23,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>HoneyComb</title>
<title>Honeycomb</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
4 changes: 2 additions & 2 deletions src/hooks/useWalletData.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export function useNetBalance() {
price: formatNumber(
Number(value.valueUSD / value.balance).toFixed(2)
),
name: 'HoneySwap',
name: 'Honeyswap',
},
])
}
Expand Down Expand Up @@ -200,7 +200,7 @@ export function useNetBalance() {
price: formatNumber(
Number(value.valueUSD / value.balance).toFixed(2)
),
name: 'HoneyComb Farm',
name: 'Honeycomb Farm',
})
})
}
Expand Down
8 changes: 4 additions & 4 deletions src/providers/HCFarmConfigProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'
// import { useHoneyCombConfigSubscription } from '../hooks/subscription-hooks'
// import { getNetworkConfig } from '../networks'

const HoneyCombConfigContext = React.createContext()
const HoneycombConfigContext = React.createContext()

function HCFarmConfigProvider({ children }) {
// const honeyCombAddress = getNetworkConfig().farm
Expand All @@ -12,9 +12,9 @@ function HCFarmConfigProvider({ children }) {
// Here will be exposed the farming configuration to be used as a value in the context.
const farmConfig = ''
return (
<HoneyCombConfigContext.Provider value={farmConfig}>
<HoneycombConfigContext.Provider value={farmConfig}>
{children}
</HoneyCombConfigContext.Provider>
</HoneycombConfigContext.Provider>
)
}

Expand All @@ -23,7 +23,7 @@ HCFarmConfigProvider.propTypes = {
}

function useHCFarmConfig() {
return useContext(HoneyCombConfigContext)
return useContext(HoneycombConfigContext)
}

export { HCFarmConfigProvider, useHCFarmConfig }
2 changes: 1 addition & 1 deletion workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build HoneyComb
- name: Build Honeycomb
run: yarn build
- name: Run BundleWatch
run: yarn bundlewatch
Expand Down

0 comments on commit 2479570

Please sign in to comment.