Skip to content

Commit e2dd0af

Browse files
authored
Merge pull request #1 from jacobkrol/master
Pull updated unbuilt files to new main branch
2 parents b2e4220 + 295bc30 commit e2dd0af

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Jacob Krol: The Web Development Journey
22

3-
Welcome to my GitHub! This is the host repository of my main webpage, [jacobkrol.github.io](https://jacobkrol.github.io/). This isn't my profile page, but I'd like to share how my webpage got to be what it is today.
3+
Welcome to my GitHub! This is the host repository of my main webpage, [jacobkrol.github.io/Jacob-Krol](https://jacobkrol.github.io/Jacob-Krol/). This isn't my profile page, but I'd like to share how my webpage got to be what it is today.
44

55
### Learning JavaScript
66

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,22 @@
22
"name": "myapp",
33
"version": "0.1.0",
44
"private": true,
5-
"homepage": "https://jacobkrol.github.io/",
5+
"homepage": "https://jacobkrol.github.io/Jacob-Krol/",
66
"dependencies": {
77
"react": "^16.13.1",
88
"react-dom": "^16.13.1",
99
"react-icons": "^3.10.0",
1010
"react-router": "^5.2.0",
1111
"react-router-dom": "^5.2.0",
12-
"react-scripts": "3.4.1"
12+
"react-scripts": "3.4.1",
13+
"gh-pages": "^3.1.0"
1314
},
1415
"scripts": {
1516
"start": "react-scripts start",
1617
"build": "react-scripts build",
17-
"eject": "react-scripts eject"
18+
"eject": "react-scripts eject",
19+
"predeploy": "npm run build",
20+
"deploy": "gh-pages -d build"
1821
},
1922
"eslintConfig": {
2023
"extends": "react-app"

src/components/utilities/Form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Form extends React.Component {
3232
let status = null;
3333
const errText = "An error has occurred submitting your feedback. Please verify your internet connection and try again later.\n\nError Code: ";
3434
//make api fetch call to server
35-
fetch('https://herokuapp.com/add',requestOptions)
35+
fetch('https://jacob-krol.herokuapp.com/add',requestOptions)
3636
//save http status, return response text
3737
.then(res => {
3838
status = res.status;

0 commit comments

Comments
 (0)