Skip to content

Commit

Permalink
Merge pull request #143 from TeamProductionSystem/server-move
Browse files Browse the repository at this point in the history
Server move
  • Loading branch information
GitLukeW committed Aug 7, 2023
2 parents 7990e1e + 08cdd34 commit 531c7aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REACT_APP_BE_URL='https://team-production-system.onrender.com'
REACT_APP_BE_URL='https://momentum-mentors.onrender.com'
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function App() {
setLoading(true);
axios
.post(
"https://team-production-system.onrender.com/auth/token/logout/",
`${process.env.REACT_APP_BE_URL}/auth/token/logout/`,
{},
{
headers: { Authorization: `Token ${token}` },
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Profile/TimeSlot.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function TimeSlot({
endTimeSend.toISOString();
axios
.post(
`https://team-production-system.onrender.com/availability/`,
`${process.env.REACT_APP_BE_URL}/availability/`,

{
start_time: startTimeSend,
Expand Down

0 comments on commit 531c7aa

Please sign in to comment.