diff --git a/src/components/EditGameForm.js b/src/components/EditGameForm.js index 640b2cc8905a168a5bd5681839ff7e4419e72e01..c755815199a7bdba408c8d4206461e6573fed6c8 100644 --- a/src/components/EditGameForm.js +++ b/src/components/EditGameForm.js @@ -75,7 +75,7 @@ export class EditGameForm extends React.Component { let token = sessionStorage.getItem("token"); // Send Game info to the server - fetch("http://172.20.2.143:5000/game/edit/" + this.props.gameId, { + fetch("http://localhost:5000/game/edit/" + this.props.gameId, { method: "PUT", headers: { Authorization: "Bearer " + token, @@ -102,7 +102,7 @@ export class EditGameForm extends React.Component { } getGameInfo(gameId) { - fetch("http://172.20.2.143:5000/game/" + gameId) + fetch("http://localhost:5000/game/" + gameId) .then(response => response.json()) .then(json => this.handleGameInfo(json)) .catch(error => console.log(error)); diff --git a/src/components/GameList.js b/src/components/GameList.js index 7b4ce4e3e60e29c82d3078e537ea4eb34e6561c2..e743dbba76b02cddaffd00d2c26757df71be7f21 100644 --- a/src/components/GameList.js +++ b/src/components/GameList.js @@ -18,7 +18,7 @@ class GameList extends React.Component { } getGames() { - fetch("http://172.20.2.143:5000/game/listgames") + fetch("http://localhost:5000/game/listgames") .then(response => response.json()) .then(games => { this.setState({ diff --git a/src/components/LoginForm.js b/src/components/LoginForm.js index 5bb6d496e1fb2b372f1aa5435c6c1a2ba93d13b0..792758134619f071e1f3bcea1f1a41abf4d86073 100644 --- a/src/components/LoginForm.js +++ b/src/components/LoginForm.js @@ -38,7 +38,7 @@ export class LoginForm extends React.Component { e.preventDefault(); // Send login info to the server - fetch(`http://172.20.2.143:5000/user/login`, { + fetch(`http://localhost:5000/user/login`, { method: "POST", headers: { Accept: "application/json", diff --git a/src/components/NewGameForm.js b/src/components/NewGameForm.js index 88c9ba5d9e743c1aa6bd238eecf1a83d951a7fac..aeee892c1dc2c7f106470eb93bb12aa31c8410c3 100644 --- a/src/components/NewGameForm.js +++ b/src/components/NewGameForm.js @@ -77,7 +77,7 @@ export class NewGameForm extends React.Component { let token = sessionStorage.getItem("token"); // Send Game info to the server - fetch("http://172.20.2.143:5000/game/new", { + fetch("http://localhost:5000/game/new", { method: "POST", headers: { Authorization: "Bearer " + token, diff --git a/src/components/Player.js b/src/components/Player.js index 5aa7729cd749efc21a0ad09a686df52dc664188c..15f7a7f48c7357e815c30134bd25c7b61b5c3984 100644 --- a/src/components/Player.js +++ b/src/components/Player.js @@ -12,7 +12,7 @@ class Player extends Component { getPlayers() { fetch( - "http://172.20.2.143:5000/tracking/players/" + this.props.currentGameId, + "http://localhost:5000/tracking/players/" + this.props.currentGameId, { method: "GET", headers: { diff --git a/src/components/RegisterForm.js b/src/components/RegisterForm.js index 67fe80d6d48870361a5db9618d7c7f1d29b0ee68..3e14df125639550bcd6948bc38167c368c273929 100644 --- a/src/components/RegisterForm.js +++ b/src/components/RegisterForm.js @@ -44,7 +44,7 @@ export class RegisterForm extends React.Component { this.handleError("Passwords do not match"); } else { // Send register info to the server - fetch("http://172.20.2.143:5000/user/register", { + fetch("http://localhost:5000/user/register", { method: "POST", headers: { Accept: "application/json", diff --git a/src/components/UserMap.js b/src/components/UserMap.js index b716b2d8df430135dd3ecbd8cf4717dd5a9d6be3..22dbbb66cc08c872820a108643cfc4e9e1fe6b73 100644 --- a/src/components/UserMap.js +++ b/src/components/UserMap.js @@ -45,7 +45,7 @@ class UserMap extends Component { // otherwise the fetch functions are the same in both if and else. any smarter way to do this? if (isDeleted === true) { fetch( - "http://172.20.2.143:5000/draw/mapdrawing/" + this.props.currentGameId, + "http://localhost:5000/draw/mapdrawing/" + this.props.currentGameId, { method: "PUT", headers: { @@ -63,7 +63,7 @@ class UserMap extends Component { ); } else { fetch( - "http://172.20.2.143:5000/draw/mapdrawing/" + this.props.currentGameId, + "http://localhost:5000/draw/mapdrawing/" + this.props.currentGameId, { method: "PUT", headers: { @@ -87,7 +87,7 @@ class UserMap extends Component { // Get the drawings from the backend and add them to the state, so they can be drawn fetchGeoJSON() { - fetch("http://172.20.2.143:5000/draw/map/" + this.props.currentGameId, { + fetch("http://localhost:5000/draw/map/" + this.props.currentGameId, { method: "GET", headers: { Authorization: "Bearer " + sessionStorage.getItem("token"),