Skip to content

Commit

Permalink
ready to go
Browse files Browse the repository at this point in the history
  • Loading branch information
Orang-utan committed Aug 14, 2020
1 parent 7f2a911 commit f56bc48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"setup": "yarn install && cd src/client && yarn install",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"server": "ts-node-dev --respawn index.ts",
"server": "ts-node-dev --respawn src/index.ts",
"client": "cd src/client && yarn start",
"start": "ts-node ./src/index.ts",
"build": "tsc",
Expand Down
1 change: 1 addition & 0 deletions src/client/src/pages/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const Login = () => {
if (!error) {
history.push('/dashboard');
} else {
alert(error);
console.error(error);
}
};
Expand Down

0 comments on commit f56bc48

Please sign in to comment.