Skip to content
This repository was archived by the owner on Apr 11, 2019. It is now read-only.

Commit fe403c4

Browse files
committed
Feat: update navbar color index
1 parent 43c254a commit fe403c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/src/components/Navbar/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function Navbar(props: {
1313
const { pathname } = props;
1414
return (
1515
<div>
16-
<Header justify="between" colorIndex="neutral">
16+
<Header justify="between">
1717
<Title>
1818
{typeof window !== 'undefined' ?
1919
<StyledLogo src={LogoImage} alt="logo" />

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"clean": "rm -rf app/dist app/build",
8080
"setup": "npm install",
8181
"setup:yarn": "yarn",
82-
"serve:bundle": "cross-env NODE_ENV=production PORT=1337 node server.js",
82+
"serve:bundle": "cross-env NODE_ENV=production node server.js",
8383
"postinstall": "npm run deploy"
8484
},
8585
"repository": {

server/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const app = express();
2020
const isDeveloping = process.env.NODE_ENV !== 'production';
2121

2222
// Need to set this to your api url
23-
const IP = process.env.IP || '0.0.0.0';
23+
const IP = process.env.IP || 'localhost';
2424
const PORT = process.env.PORT || 1337;
2525
const apiUrl = `${BASE_URL}graphql`;
2626

0 commit comments

Comments
 (0)